我正在迁移到 Coordinator Layout 和 Nested ScrollView,我知道要让它工作我需要使用 recycle r 视图,但问题是我真的想用旧的 List View 来实现它有什么办法可以实现
这是我在做什么
<?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"
但这会扩展我的列表视图以匹配父级,但现在没有滚动
请帮助我,我真的需要使用自定义列表视图
帮助将不胜感激。
提前谢谢。