views:

25

answers:

1

I followed example as http://www.androidpeople.com/android-custom-dynamic-listview/

However I bump into problem applying autoscroll to bottom as

listview.setTranscriptMode(ListView.TRANSCRIPT_MODE_DISABLED);

Where should I apply it?

A: 

Apparently it was solve with adding the following line under xml file.

android:transcriptMode="alwaysScroll"
conandor