We have been searching and googeling our brains off for codesnippets on how to autoscrolldown to the last ListEntry of a ListView.
Maybe the easiest approach is adding this to your ListView's XML-definition:
android:transcriptMode="alwaysScroll"
<ListView android:id="@android:id/list"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:stackFromBottom="true"
android:transcriptMode="alwaysScroll"
/>
Be the first to comment