How Does Scrolling In Android Listview Work?
I have an android-app with a listview in an activity. The listview has, if I call it so, three data states. no data loaded from inet -> only one dummy item is visible, saying t
Solution 1:
I believe you want:
listview.setTranscriptMode(ListView.TRANSCRIPT_MODE_DISABLED);
Post a Comment for "How Does Scrolling In Android Listview Work?"