使用 CoordinatorLayout 隐藏工具栏,但在片段上隐藏 RecyclerView
Hide Toolbar with CoordinatorLayout, but RecyclerView on a fragment
我有一个带有两个选项卡的 Activity。每个选项卡都包含一个片段,其中包含一个 SwipeRefreshLayout
和一个 RecyclerView
。
在 Activity 中,我有一个 CoordinatorLayout
和一个 AppBarLayout
(有一个 Toolbar
和一个 TabLayout
)和一个 ViewPager
对于碎片。
现在,我想要实现的是:当用户在片段中滚动时,隐藏工具栏而不是选项卡,就像在 Play 商店中一样。
我在网上看到的例子,布局很简单:RecyclerView
和CoordinatorLayout
里面的Toolbar
在同一个xml.
然后,他们就写:
<android.support.v7.widget.RecyclerView
android:id="@+id/rvToDoList"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
和
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fitsSystemWindows="true">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:layout_scrollFlags="scroll|enterAlways"/>
</android.support.design.widget.AppBarLayout>
所以,我不知道该怎么做。
我的xml如下:
Activity布局是:
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/activity_main_drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">
<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.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fitsSystemWindows="true">
<android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/activity_main_toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="@color/color_primary"
app:layout_scrollFlags="scroll|enterAlways"/>
<android.support.design.widget.TabLayout
android:id="@+id/activity_main_tab_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:tabIndicatorColor="@color/color_text_primary"
app:tabMode="fixed" />
</android.support.design.widget.AppBarLayout>
<android.support.v4.view.ViewPager
android:id="@+id/activity_main_tabs_pager"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"/>
</android.support.design.widget.CoordinatorLayout>
<ListView
android:id="@+id/activity_main_nav_drawer_list"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="start"
android:background="@color/color_primary"
android:choiceMode="singleChoice"
android:divider="@android:color/transparent"
android:dividerHeight="5dp"
android:overScrollMode="never"
android:smoothScrollbar="true" />
</android.support.v4.widget.DrawerLayout>
碎片是:
<android.support.v4.widget.SwipeRefreshLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/fragment_coupons_swipe_refresh_view"
android:layout_width="match_parent"
android:layout_height="match_parent">
<com.github.yasevich.endlessrecyclerview.EndlessRecyclerView
android:id="@+id/fragment_coupons_recycler_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scrollbars="vertical" />
</android.support.v4.widget.SwipeRefreshLayout>
提前致谢。
兄弟,我遇到了同样的问题。问题不在代码中。我敢打赌您使用的是旧版本的构建工具和库。更新到最新:
- buildToolsVersion“22.0.1”
- com.android.support:appcompat-v7:22.1.1
- com.android.support:recyclerview-v7:22.2.0
在我的例子中,这就像一个魅力!祝你好运!
对于像我一样在 Fragment 中使用 Scrollview 的人,我建议您使用 android.support.v4.widget.NestedScrollView。这样,Toolbar and/or TabLayout 将与 Scrollview
一起滚动
我有一个带有两个选项卡的 Activity。每个选项卡都包含一个片段,其中包含一个 SwipeRefreshLayout
和一个 RecyclerView
。
在 Activity 中,我有一个 CoordinatorLayout
和一个 AppBarLayout
(有一个 Toolbar
和一个 TabLayout
)和一个 ViewPager
对于碎片。
现在,我想要实现的是:当用户在片段中滚动时,隐藏工具栏而不是选项卡,就像在 Play 商店中一样。
我在网上看到的例子,布局很简单:RecyclerView
和CoordinatorLayout
里面的Toolbar
在同一个xml.
然后,他们就写:
<android.support.v7.widget.RecyclerView
android:id="@+id/rvToDoList"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
和
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fitsSystemWindows="true">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:layout_scrollFlags="scroll|enterAlways"/>
</android.support.design.widget.AppBarLayout>
所以,我不知道该怎么做。
我的xml如下:
Activity布局是:
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/activity_main_drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">
<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.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fitsSystemWindows="true">
<android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/activity_main_toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="@color/color_primary"
app:layout_scrollFlags="scroll|enterAlways"/>
<android.support.design.widget.TabLayout
android:id="@+id/activity_main_tab_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:tabIndicatorColor="@color/color_text_primary"
app:tabMode="fixed" />
</android.support.design.widget.AppBarLayout>
<android.support.v4.view.ViewPager
android:id="@+id/activity_main_tabs_pager"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"/>
</android.support.design.widget.CoordinatorLayout>
<ListView
android:id="@+id/activity_main_nav_drawer_list"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="start"
android:background="@color/color_primary"
android:choiceMode="singleChoice"
android:divider="@android:color/transparent"
android:dividerHeight="5dp"
android:overScrollMode="never"
android:smoothScrollbar="true" />
</android.support.v4.widget.DrawerLayout>
碎片是:
<android.support.v4.widget.SwipeRefreshLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/fragment_coupons_swipe_refresh_view"
android:layout_width="match_parent"
android:layout_height="match_parent">
<com.github.yasevich.endlessrecyclerview.EndlessRecyclerView
android:id="@+id/fragment_coupons_recycler_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scrollbars="vertical" />
</android.support.v4.widget.SwipeRefreshLayout>
提前致谢。
兄弟,我遇到了同样的问题。问题不在代码中。我敢打赌您使用的是旧版本的构建工具和库。更新到最新:
- buildToolsVersion“22.0.1”
- com.android.support:appcompat-v7:22.1.1
- com.android.support:recyclerview-v7:22.2.0
在我的例子中,这就像一个魅力!祝你好运!
对于像我一样在 Fragment 中使用 Scrollview 的人,我建议您使用 android.support.v4.widget.NestedScrollView。这样,Toolbar and/or TabLayout 将与 Scrollview
一起滚动