android将内容放在工具栏下方

时间:2015-11-16 15:12:57

标签: android android-support-library android-toolbar android-coordinatorlayout

我有这个布局:

<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/coordinatorLayout"
    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/toolbar"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            android:background="?attr/colorPrimary"
            app:layout_scrollFlags="scroll|enterAlways|snap"/>

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

    <android.support.v7.widget.RecyclerView
        android:id="@+id/recyclerView"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:layout_behavior="@string/appbar_scrolling_view_behavior">

    </android.support.v7.widget.RecyclerView>

    <android.support.design.widget.FloatingActionButton
        android:id="@+id/fabButton"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="end|bottom"
        android:src="@drawable/ic_favorite_outline_white_24dp"/>

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

设置@string/appbar_scrolling_view_behavior属性会将RecyclerView移动工具栏的高度。

但是,如果我需要将RecyclerView的第一个元素与状态栏对齐,该怎么办?
我希望工具栏覆盖(在上面)第一个元素。

换句话说,我不想要@string/appbar_scrolling_view_behavior行为所带来的任何偏移。

你能告诉我怎么做吗?

2 个答案:

答案 0 :(得分:0)

我有同样的问题,我只是在RelativeLayout中包装了AppbarLayout和我的其余视图(在你的情况下是recyclerview),它工作正常。我不知道这种方法是否有任何缺点。

答案 1 :(得分:0)

由于roles推送内容,因此偏移量不是@string/appbar_scrolling_view_behavior behaviour

我不确定是否还有其他更好的解决方案。但我建议删除AppBarLayout以使您的内容置于AppBarLayout之下。此外,您可能需要滚动行为,以便检查下面的库。

很多应用程序都使用它,例如 Jair音乐播放器甚至 WhatsApp 也使用它。

库: Android Observable Scroll View