我有一个列表视图,当我添加新项目时,它总是滚动到开始。我尝试使用:lv.setSelection(position)
,,lv.ScrollTo(x,y)
更改ListView的onScrollListner,但我没有成功。
任何人都可以帮助我吗?
我有一个列表视图,当我添加新项目时,它总是滚动到开始。我尝试使用:lv.setSelection(position)
,,lv.ScrollTo(x,y)
更改ListView的onScrollListner,但我没有成功。
任何人都可以帮助我吗?
将滚动视图添加到您的列表视图将绑定的 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>