android - 工具栏不隐藏与协调器布局

标签 android android-fragments

我正在尝试复制 this blog post 中讨论的行为,当我向下滚动 RecyclerView(在单独的 fragment 中)时,工具栏将隐藏在其中,并保留选项卡。

不幸的是,经过大量尝试后,我似乎无法让工具栏移动,而只是保持静止。我已为我的 Activity 和我的 fragment 附加了 XML。

感谢您的帮助,如果您需要更多代码,请询问!

Activity

<?xml version="1.0" encoding="utf-8"?>

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

    <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/appBarLayout"
            android:layout_width="match_parent"
            android:layout_height="wrap_content">

            <android.support.v7.widget.Toolbar
                android:id="@+id/topToolbar"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:background="?attr/colorPrimary"
                android:minHeight="?attr/actionBarSize"
                app:layout_scrollFlags="scroll|enterAlways" />

            <android.support.design.widget.TabLayout
                android:id="@+id/tabLayout"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:background="?attr/colorPrimary" />

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

        <android.support.v4.view.ViewPager xmlns:android="http://schemas.android.com/apk/res/android"
            android:id="@+id/mainPager"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            app:layout_behavior="@string/appbar_scrolling_view_behavior"/>

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

    <android.support.design.widget.NavigationView
        android:id="@+id/navigationView"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:layout_gravity="start"
        app:menu="@menu/navigation_drawer_menu" />

</android.support.v4.widget.DrawerLayout>

fragment :

<?xml version="1.0" encoding="utf-8"?>

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="info.test.redditclient.Fragment_Posts">

    <android.support.v4.widget.SwipeRefreshLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/swipe_container"
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <android.support.v7.widget.RecyclerView
            android:id="@+id/recyclerList"
            android:layout_width="match_parent"
            android:layout_height="match_parent" />

    </android.support.v4.widget.SwipeRefreshLayout>

    <TextView
        android:id="@+id/no_posts_text"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:gravity="center"
        android:text="@string/no_posts"
        android:textAppearance="?android:attr/textAppearanceMedium"
        android:visibility="gone" />

    <fragment
        android:id="@+id/bottom_toolbar"
        android:name="info.test.redditclient.Fragment_Bottom_Toolbar"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        tools:layout="@layout/fragment_bottom_toolbar"></fragment>

</RelativeLayout>

编辑:

在一些建议之后,对于我的 Activity 布局,我将 viewpager 移到了 AppBarLayout 之外,并且还删除了一个冗余的框架布局。问题仍然存在。

最佳答案

将您的 View 寻呼机移到 AppBarLayout 之外

关于android - 工具栏不隐藏与协调器布局,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32226755/

相关文章:

android - 从 SD 卡读取大图像并保存调整大小(内存不足!)

android - 将 MySQL 提取到 ListView 中

android - 将 list_content 包含到列表布局中以保留 ListFragment 功能

android - 从另一个 Activity 刷新 Recyclerview

android - 使用新内容 : 刷新 ViewPager 的奇怪问题

android - fragment transaction - pop backstack 然后添加 fragment

android - 用于高分辨率手持设备的可绘制文件夹

android - 如何在 ScrollView 中滚动 RecyclerView

安卓特殊目录

java - 如何使用混淆器混淆选择性类?