android - 通过在 Fragment 中滚动 recyclerview 来隐藏 Activity 中的工具栏?

标签 android material-design android-toolbar android-coordinatorlayout android-appbarlayout

我的 Activity XML 是

<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/drawer"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical">

        <android.support.design.widget.AppBarLayout
            android:id="@+id/appbar"
            android:layout_width="match_parent"
            android:layout_height="wrap_content">

            <android.support.v7.widget.Toolbar
                android:id="@+id/toolbar"
                android:layout_width="match_parent"
                android:layout_height="?attr/actionBarSize"
                android:background="@color/colorPrimary"
                android:title="@string/app_name"
                app:layout_scrollFlags="scroll|enterAlways"/>
        </android.support.design.widget.AppBarLayout>

        <FrameLayout
            android:id="@+id/fragmentContainer"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            />

    </LinearLayout>


    <android.support.design.widget.NavigationView
        android:id="@+id/drawerNavigationView"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:layout_gravity="start"
        app:itemTextColor="@color/navview_text_color"
        app:menu="@menu/home_drawer_items_menu"/>
</android.support.v4.widget.DrawerLayout>

我的 fragment 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.support.design.widget.AppBarLayout
        android:id="@+id/appbar"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        <android.support.design.widget.TabLayout
            android:id="@+id/tabs"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            app:layout_scrollFlags="scroll|enterAlways"/>

    </android.support.design.widget.AppBarLayout>

    <android.support.v4.view.ViewPager
        android:id="@+id/viewPager"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@android:color/black"
        app:layout_behavior="@string/appbar_scrolling_view_behavior"/>

    <android.support.design.widget.FloatingActionButton
        android:id="@+id/fab"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_margin="@dimen/fab_margin"
        android:clickable="true"
        android:src="@drawable/ic_plus"
        android:tint="@android:color/white"
        app:elevation="5dp"
        app:layout_anchor="@id/viewPager"
        app:layout_anchorGravity="bottom|right|end"/>
</android.support.design.widget.CoordinatorLayout>

我的 fragmentViewPager 和我的 activity 中使用了 tabsnested fragments > 使用 navigation drawer 所以我不能将 tabs 移动到 activity 因为只有这个特定的 fragment。而其他 fragment 只需要一个工具栏。同时所有的 fragment 都需要访问navigation drawer

现在我想做的是以某种方式关联 app:layout_scrollFlags="scroll|enterAlways" 使用我的 Activity 工具栏。因此,每当我在 fragment 中滚动我的 RecyclerView 时, Activity 中的 toolbar 就会被隐藏。

如果你们能指出正确的方向或帮助我弄清楚如何做到这一点,那就太好了?

最佳答案

如果我正确理解你的问题,你可以做的是

1) 在 MainActivity 中包含工具栏和 NavigationDrawer,这样它也可以在所有 fragment 中访问。

2) 仅在 ParentFragment 中包含选项卡,其中包含其他 fragment 的 ViewPager

使用这种方法,您的工具栏和 NavigationDrawer 将在所有 fragment 中可见,而选项卡仅在 ParentFragment 中可见

希望对你有帮助

关于android - 通过在 Fragment 中滚动 recyclerview 来隐藏 Activity 中的工具栏?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37023535/

相关文章:

android - API14+ 的 PreferenceFragmentCompat 与 PreferenceFragment

android - 复选框重音未选中的复选框

android - 如何在 Android 中禁用 EditText

android - 如何通过trace调试android原生crash?

android - 有没有一种有效的方法来确定图像在指定颜色范围内的百分比? (在 Android 的 OpenCV 中)

android - 工具栏下方的抽屉导航

android - Material Design - AppCompat 工具栏不显示阴影

android - 如何将 ListView 适配器中的项目绑定(bind)到服务?

javascript - TypeScript 2.4.1 -> fontWeight -> 类型 'number' 不可分配给类型 '"inherit"| 400 |

java - 关闭应用程序而不是转到上一个 Activity