我有一个列表视图,当我添加新的itens时总是滚动到开始。
我尝试使用:lv.setSelection(position)
,lv.ScrollTo(x,y)
,更改ListView的onScrollListner,但我没有成功。
任何人都可以帮助我?
答案 0 :(得分:0)
将scrollview添加到listview将绑定的xml文件中,
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<TextView
android:id="@+id/title"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center_horizontal"
android:text:"test"
android:textColor="#000" />
</ScrollView>