1

我正在使用设计支持库并使用 aGridView但是当我向上或向下滚动到网格时,Toolbar它没有隐藏或显示。我在 a 上使用相同的代码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 适配器。

4

2 回答 2

3

目前 theListView和 theGridView具有预期的行为,CoordinatorLayout只有API>21

要获得此行为,您必须设置:

if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
    gridView.setNestedScrollingEnabled(true);
}

你可以在这里找到更多信息。

于 2015-07-01T16:37:57.673 回答
0

假设你使用CoordinatorLayout作为父布局,你需要使用 a RecyclerVieworNestedScrollView让它正常工作

于 2015-06-03T16:40:57.533 回答