我正在使用设计支持库并使用GridView
,但当我向上或向下滚动到网格时,Toolbar
没有隐藏或显示。我在RecyclerView
上使用了相同的代码,它运行得很好。
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/main_content"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.design.widget.AppBarLayout
android:id="@+id/appbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar1"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:layout_scrollFlags="scroll|enterAlways"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />
</android.support.design.widget.AppBarLayout>
<GridView
android:id="@+id/gridView1"
android:numColumns="2"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"/>
</android.support.design.widget.CoordinatorLayout>
这是我活动中的* .xml文件。我只是setSupportActionBar(toolbar)
并初始化GridView适配器。
答案 0 :(得分:3)
目前ListView
和GridView
只有CoordinatorLayout
与 API&gt; 21 有预期的行为。
要获得此行为,您必须设置:
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
gridView.setNestedScrollingEnabled(true);
}
您可以找到更多信息here。
答案 1 :(得分:0)
假设您使用CoordinatorLayout
作为父版式,则需要使用RecyclerView
或NestedScrollView
才能使其正常工作