私は Coordinator Layout と Nested ScrollView に移行していますが、それを機能させるにはリサイクル r ビューを使用する必要があることを知っていますが、古いリスト ビューでそれを可能にしたいのですが、それを達成する方法はありますか?
これが私がやっていることです
<?xml version="1.0" encoding="utf-8"?>
<!-- NOT SET HERE: android:fitsSystemWindows="true" -->
<android.support.design.widget.AppBarLayout
android:id="@+id/appbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
app:layout_collapseMode="pin"
app:layout_scrollFlags="scroll|enterAlways"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />
</android.support.design.widget.AppBarLayout>
<android.support.v4.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true"
android:layout_gravity="fill_vertical"
app:behavior_overlapTop="32dp"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<LinearLayout
android:id="@+id/ll_main_container"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<com.felipecsl.asymmetricgridview.library.widget.AsymmetricGridView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/listView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#ffffff"
android:divider="@android:color/transparent"
android:dividerHeight="3dp"
android:fadingEdge="horizontal"
android:focusable="false"
android:gravity="center"
android:listSelector="#00000000" />
</LinearLayout>
</android.support.v4.widget.NestedScrollView>
私も使用しました
android:fillViewport="true"
しかし、これは私のリストビューを親に合わせて拡張しますが、今はスクロールしません
カスタムリストビューを使用する必要があるのを助けてください
助けていただければ幸いです。
事前にサンクス。