I have a ListView
.
Each item of the ListView
is a small WebView
.
I want my ListView
to scroll to the bottom when the ListView
is displayed.
But, alas, nothing seems to work:
lv.setTranscriptMode(ListView.TRANSCRIPT_MODE_ALWAYS_SCROLL);
mListView.setStackFromBottom(true);
No success.
myListView.post(new Runnable() {
@Override
public void run() {
// Select the last row so it will scroll into view...
myListView.setSelection(myListAdapter.getCount() - 1);
}
});
No success.