Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
114 views
in Technique[技术] by (71.8m points)

java - Using Auto scoll within ListView showing blank rows in Android

I'm building a Smart Mirror App. The bottom section of the screen contains a ListView, that is populated with NASA News from a custom Adapter. This list view shows 3 articles on screen, there are 10 articles. If i scroll using touch it shows the rest of the rows. Using the following code in my program to auto scroll, scrolls the 3 visible articles OK, but when it scrolls up form off screen the following articles are blank.

        final long totalScrollTime = Long.MAX_VALUE; //total scroll time. I think that 300 000 000 years is close enouth to infinity. if not enought you can restart timer in onFinish()
        final int scrollPeriod = 9000; // every 20 ms scoll will happened. smaller values for smoother
        final int heightToScroll = 140; // will be scrolled to 20 px every time. smaller values for smoother scrolling

        storiesListViewObj.post(new Runnable()
        {
        @Override
            public void run()
        {
                new CountDownTimer(totalScrollTime, scrollPeriod )
                {
                    public void onTick(long millisUntilFinished)
                    {
                        storiesListViewObj.scrollBy(0, heightToScroll);
                    }
                    public void onFinish()
                    {
                        //you can add code for restarting timer here
                    }
                }.start();
            }
        });
question from:https://stackoverflow.com/questions/65889790/using-auto-scoll-within-listview-showing-blank-rows-in-android

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...