我的 ListView 不会滚动到屏幕的末尾。
它停在最后一项的顶部。
下面是我一直在玩的两个代码,让它滚动到最后。
选项卡布局也应该滚动,以便为 ListView 滚动到最后腾出空间。
此功能适用于所有其他 Fragment,但不适用于 ScrollView。
<android.support.v4.widget.NestedScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true"
tools:context="com.application.sweetiean.stlservicing.Serv_OverviewFragment">
<!-- TODO: Update blank fragment layout -->
<LinearLayout
android:id="@+id/serv_OverviewTab"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:padding="5dp"
android:orientation="vertical">
<ListView
android:id="@+id/displayListView"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
</LinearLayout>
和
<android.support.v4.widget.NestedScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true"
tools:context="com.application.sweetiean.stlservicing.Serv_OverviewFragment">
<!-- TODO: Update blank fragment layout -->
<ListView
android:id="@+id/displayListView"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
我需要一些帮助。