Android的ListView,資料更新後自動scroll到底部。

longerandlonger發表於2012-10-11

在ListView的layout配置中新增 android:transcriptMode="alwaysScroll",

或者在Java程式碼中執行 lv.setTranscriptMode(ListView.TRANSCRIPT_MODE_ALWAYS_SCROLL);


    <ListView
        android:id="@+id/id_listView_contact"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:transcriptMode="alwaysScroll"
    </ListView>


參考:http://stackoverflow.com/questions/3606530/listview-scroll-to-the-end-of-the-list-after-updating-the-list

相關文章