GridView 的 CollapsingToolbarLayout 问题
CollapsingToolbarLayout Issue with GridView
CollapsingToolbarLayout
仅适用于 RecyclerView
但不适用于 ListView
和 GridView
.
下面一个是我的XML文件:
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">
<android.support.design.widget.AppBarLayout
android:id="@+id/appbar"
android:layout_width="match_parent"
android:layout_height="192dp"
android:fitsSystemWindows="true"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
<android.support.design.widget.CollapsingToolbarLayout
android:id="@+id/collapsing_toolbar"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
app:contentScrim="?attr/colorPrimary"
app:expandedTitleMarginBottom="32dp"
app:expandedTitleMarginEnd="64dp"
app:expandedTitleMarginStart="48dp"
app:layout_scrollFlags="scroll|exitUntilCollapsed">
<ImageView
android:id="@+id/restaurant_image"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:src="@drawable/gradiant"
app:layout_collapseMode="parallax" />
<android.support.v7.widget.Toolbar
android:id="@+id/anim_toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:layout_collapseMode="pin"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />
</android.support.design.widget.CollapsingToolbarLayout>
</android.support.design.widget.AppBarLayout>
<android.support.v4.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:animateLayoutChanges="true"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
android:fillViewport="true">
<GridView
android:id="@+id/restaurant_items"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginLeft="20dp"
android:layout_marginRight="20dp"
android:layout_marginTop="5dp"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
android:gravity="center"
android:numColumns="2"
android:verticalSpacing="20dp" />
</android.support.v4.widget.NestedScrollView>
</android.support.design.widget.CoordinatorLayout>
这是我的 Activity
文件:
Toolbar toolbar = (Toolbar) findViewById(R.id.anim_toolbar);
setSupportActionBar(toolbar);
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
CollapsingToolbarLayout collapsingToolbar = (CollapsingToolbarLayout) findViewById(R.id.collapsing_toolbar);
collapsingToolbar.setTitle("Resturant Name");
ImageView header = (ImageView) findViewById(R.id.restaurant_image);
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
ViewCompat.setNestedScrollingEnabled(mGrid,true);
}
mGrid.setAdapter(new ResturantItemsAdapter(this, images, name));//images and name is array with size 10....
注意:-滚动工作正常,但在滚动一些网格视图列表后,它会卡住并且不再滚动,即使网格视图中有更多行。它只滚动网格视图的第 8 个项目,第 9 个和第 10 个项目不显示 ...
我搜索了很多链接,有人说它只适用于以上版本和 Lollipop 版本。以下版本有一些问题。
棒棒糖版本下可以运行折叠工具栏吗?
感谢大家....
您需要将 GridView 和 ListView 包装在 NestedScrollView 中并添加正确的行为,如下所示:
<android.support.v4.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:animateLayoutChanges="true"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
android:fillViewport="true">
ListView 和 GridView 不能直接与 CoordinatorLayout 和 CollapsibleToolbar 一起使用。
尝试将 NestedScrollView 或 RecyclerView 与 GridLayoutManager 结合使用来创建 GridView。
当我想将 CollapsingToolbarLayout 与 ListView/GridView 一起使用时,我遇到过同样的问题。
它们只适用于 RecyclerView。因此,我建议您实施 RecyclerView 而不是 GridView。
(不推荐) - 但如果您仍想继续使用 GridView,这里有一个技巧 (jugaad) 可以解决您的问题。
滚动工作正常,但在一些 GridView 列表滚动后它卡住并且不再滚动,即使 gridView 中有更多行。它只滚动 gridView 的第 8 项和第 9 项和第 10 项没有显示...
在这里,您的 GridView 根据 AppBarLayout 的高度 192dp
移动到屏幕下方。因此可以将相同的 paddingBottom = 192dp 添加到您的 GridView 以将其拉起并使其他最后 2 项可见。另外不要忘记添加 clipToPadding = false
.
<GridView
android:id="@+id/restaurant_items"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginLeft="20dp"
android:layout_marginRight="20dp"
android:layout_marginTop="5dp"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
android:gravity="center"
android:numColumns="2"
android:verticalSpacing="20dp"
android:paddingBottom = "192dp"
android:clipToPadding = "false" />
CoordinateLayout
工作 ListView
和 GridView
仅当您的 API > 21
.
对于 ListView
你可以这样编码。
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
listView.setNestedScrollingEnabled(true);
}
因此在更新后的 CoordinateLayout
中仅适用于 NestedScrollView
和 RecycleView
。
正如 @amitairos 所说,您必须将 ListView
或 GridView
放入 NestScrollView
才能使用它。
CoordinatorLayout
与 RecyclerView
或 NestedScrollView
配合使用效果更好。根据您的要求,您可以使用 RecyclerView
和 GridLayoutManger
。
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">
<android.support.design.widget.AppBarLayout
android:id="@+id/appbar"
android:layout_width="match_parent"
android:layout_height="192dp"
android:fitsSystemWindows="true"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
<android.support.design.widget.CollapsingToolbarLayout
android:id="@+id/collapsing_toolbar"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
app:contentScrim="?attr/colorPrimary"
app:expandedTitleMarginBottom="32dp"
app:expandedTitleMarginEnd="64dp"
app:expandedTitleMarginStart="48dp"
app:layout_scrollFlags="scroll|exitUntilCollapsed">
<ImageView
android:id="@+id/restaurant_image"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:src="@drawable/gradiant"
app:layout_collapseMode="parallax" />
<android.support.v7.widget.Toolbar
android:id="@+id/anim_toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:layout_collapseMode="pin"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />
</android.support.design.widget.CollapsingToolbarLayout>
</android.support.design.widget.AppBarLayout>
<android.support.v7.widget.RecyclerView
android:id="@+id/my_recycler_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
android:scrollbars="vertical" />
</android.support.design.widget.CoordinatorLayout>
RecyclerView.LayoutManager mLayoutManager = new GridLayoutManager(this, 2);
recyclerView.setLayoutManager(mLayoutManager);
下面是一个演示 GridLayoutManger
用法的示例:
http://www.androidhive.info/2016/05/android-working-with-card-view-and-recycler-view/
CollapsingToolbarLayout
仅适用于 RecyclerView
但不适用于 ListView
和 GridView
.
下面一个是我的XML文件:
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">
<android.support.design.widget.AppBarLayout
android:id="@+id/appbar"
android:layout_width="match_parent"
android:layout_height="192dp"
android:fitsSystemWindows="true"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
<android.support.design.widget.CollapsingToolbarLayout
android:id="@+id/collapsing_toolbar"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
app:contentScrim="?attr/colorPrimary"
app:expandedTitleMarginBottom="32dp"
app:expandedTitleMarginEnd="64dp"
app:expandedTitleMarginStart="48dp"
app:layout_scrollFlags="scroll|exitUntilCollapsed">
<ImageView
android:id="@+id/restaurant_image"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:src="@drawable/gradiant"
app:layout_collapseMode="parallax" />
<android.support.v7.widget.Toolbar
android:id="@+id/anim_toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:layout_collapseMode="pin"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />
</android.support.design.widget.CollapsingToolbarLayout>
</android.support.design.widget.AppBarLayout>
<android.support.v4.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:animateLayoutChanges="true"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
android:fillViewport="true">
<GridView
android:id="@+id/restaurant_items"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginLeft="20dp"
android:layout_marginRight="20dp"
android:layout_marginTop="5dp"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
android:gravity="center"
android:numColumns="2"
android:verticalSpacing="20dp" />
</android.support.v4.widget.NestedScrollView>
</android.support.design.widget.CoordinatorLayout>
这是我的 Activity
文件:
Toolbar toolbar = (Toolbar) findViewById(R.id.anim_toolbar);
setSupportActionBar(toolbar);
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
CollapsingToolbarLayout collapsingToolbar = (CollapsingToolbarLayout) findViewById(R.id.collapsing_toolbar);
collapsingToolbar.setTitle("Resturant Name");
ImageView header = (ImageView) findViewById(R.id.restaurant_image);
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
ViewCompat.setNestedScrollingEnabled(mGrid,true);
}
mGrid.setAdapter(new ResturantItemsAdapter(this, images, name));//images and name is array with size 10....
注意:-滚动工作正常,但在滚动一些网格视图列表后,它会卡住并且不再滚动,即使网格视图中有更多行。它只滚动网格视图的第 8 个项目,第 9 个和第 10 个项目不显示 ...
我搜索了很多链接,有人说它只适用于以上版本和 Lollipop 版本。以下版本有一些问题。
棒棒糖版本下可以运行折叠工具栏吗?
感谢大家....
您需要将 GridView 和 ListView 包装在 NestedScrollView 中并添加正确的行为,如下所示:
<android.support.v4.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:animateLayoutChanges="true"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
android:fillViewport="true">
ListView 和 GridView 不能直接与 CoordinatorLayout 和 CollapsibleToolbar 一起使用。
尝试将 NestedScrollView 或 RecyclerView 与 GridLayoutManager 结合使用来创建 GridView。
当我想将 CollapsingToolbarLayout 与 ListView/GridView 一起使用时,我遇到过同样的问题。
它们只适用于 RecyclerView。因此,我建议您实施 RecyclerView 而不是 GridView。
(不推荐) - 但如果您仍想继续使用 GridView,这里有一个技巧 (jugaad) 可以解决您的问题。
滚动工作正常,但在一些 GridView 列表滚动后它卡住并且不再滚动,即使 gridView 中有更多行。它只滚动 gridView 的第 8 项和第 9 项和第 10 项没有显示...
在这里,您的 GridView 根据 AppBarLayout 的高度 192dp
移动到屏幕下方。因此可以将相同的 paddingBottom = 192dp 添加到您的 GridView 以将其拉起并使其他最后 2 项可见。另外不要忘记添加 clipToPadding = false
.
<GridView
android:id="@+id/restaurant_items"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginLeft="20dp"
android:layout_marginRight="20dp"
android:layout_marginTop="5dp"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
android:gravity="center"
android:numColumns="2"
android:verticalSpacing="20dp"
android:paddingBottom = "192dp"
android:clipToPadding = "false" />
CoordinateLayout
工作 ListView
和 GridView
仅当您的 API > 21
.
对于 ListView
你可以这样编码。
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
listView.setNestedScrollingEnabled(true);
}
因此在更新后的 CoordinateLayout
中仅适用于 NestedScrollView
和 RecycleView
。
正如 @amitairos 所说,您必须将 ListView
或 GridView
放入 NestScrollView
才能使用它。
CoordinatorLayout
与 RecyclerView
或 NestedScrollView
配合使用效果更好。根据您的要求,您可以使用 RecyclerView
和 GridLayoutManger
。
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">
<android.support.design.widget.AppBarLayout
android:id="@+id/appbar"
android:layout_width="match_parent"
android:layout_height="192dp"
android:fitsSystemWindows="true"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
<android.support.design.widget.CollapsingToolbarLayout
android:id="@+id/collapsing_toolbar"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
app:contentScrim="?attr/colorPrimary"
app:expandedTitleMarginBottom="32dp"
app:expandedTitleMarginEnd="64dp"
app:expandedTitleMarginStart="48dp"
app:layout_scrollFlags="scroll|exitUntilCollapsed">
<ImageView
android:id="@+id/restaurant_image"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:src="@drawable/gradiant"
app:layout_collapseMode="parallax" />
<android.support.v7.widget.Toolbar
android:id="@+id/anim_toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:layout_collapseMode="pin"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />
</android.support.design.widget.CollapsingToolbarLayout>
</android.support.design.widget.AppBarLayout>
<android.support.v7.widget.RecyclerView
android:id="@+id/my_recycler_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
android:scrollbars="vertical" />
</android.support.design.widget.CoordinatorLayout>
RecyclerView.LayoutManager mLayoutManager = new GridLayoutManager(this, 2);
recyclerView.setLayoutManager(mLayoutManager);
下面是一个演示 GridLayoutManger
用法的示例:
http://www.androidhive.info/2016/05/android-working-with-card-view-and-recycler-view/