为什么我的嵌套ScrollView不会滚动到最后?

时间:2015-12-11 16:07:29

标签: android listview nestedscrollview

我的ListView不会滚动到屏幕的末尾 它停在最后一项的顶部。

以下是我一直在玩的两个代码,以便滚动到最后 标签布局也应该滚动,以便为ListView滚动直到结束空间 此功能适用于所有其他片段,但不适用于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" />

我需要一些帮助。

0 个答案:

没有答案