10

私のアプリでは を使用してListViewおり、 の中にありNestedScrollViewます。を設定するheightと、画面全体をカバーしません。画面全体をカバーしたい。ListViewmatch_parentListView

私のXMLファイル:

<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.NestedScrollView
        xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        android:isScrollContainer="false"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_gravity="fill_vertical"
        android:clipToPadding="false"
        app:layout_behavior="@string/appbar_scrolling_view_behavior">

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:orientation="vertical"
            android:paddingTop="1dp">

        <ListView
            android:id="@+id/list"
            android:layout_width="fill_parent"
            android:layout_height="match_parent"
            android:divider="@null" />
        </LinearLayout>
</android.support.v4.widget.NestedScrollView>
4

3 に答える 3

41

これを NestedScrollView に追加します

android:fillViewport="true"
于 2015-09-09T11:23:30.683 に答える
3

アンドロイド:fillViewport="true"

これにより、リスト ビューがデバイス画面全体をカバーしますが、データが多い場合はスクロールできません。 この画像からその結果を表示できます

于 2016-06-02T12:43:23.527 に答える