AppBarLayout不允许其他视图匹配_parent

时间:2016-01-08 04:08:17

标签: java android android-coordinatorlayout android-appbarlayout coordinator-layout

我使用包含工具栏和TabLayout的AppBarLayout布局,ViewPager和FloatingActionMenu。

我的问题是,当使用layout_height = match_parent时,使用AppBarLayout会导致CoordinatorLayout内的其他视图与整个屏幕不匹配,而其他视图会匹配除了AppBarLayout之外的其他视图。这种行为非常适合我的ViewPager,因为否则其内容将被AppBarLayout覆盖,但我需要我的FloatingActionMenu才能匹配整个屏幕,这样当我的菜单打开时我可以调暗屏幕。

所以我的问题是:如何使我的FloatingActionMenu接管整个屏幕?

我的XML:

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout
android:id="@+id/main_content"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:context="com.example.Home">

<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="?attr/colorPrimary"
        app:popupTheme="@style/AppBaseTheme.ToolbarPopup"
        app:theme="@style/AppBaseTheme.Toolbar">

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

    <android.support.design.widget.TabLayout
        android:id="@+id/tabs"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="?attr/colorPrimary"
        app:tabTextAppearance="@style/AppBaseTheme.TabText"
        app:theme="@style/AppBaseTheme.Toolbar"/>

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

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

<com.example.FloatingActionMenu
    android:id="@+id/fam"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_gravity="bottom|end"
    android:padding="@dimen/fab_margin"
    app:menu_backgroundColor="#BB8b8b8b">

    <com.example.FloatingActionButton
        android:id="@+id/fab"
        style="@style/MenuButtonsStyle"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"/>

</com.example.FloatingActionMenu>

使用RelativeLayout作为我的根视图或使用LinearLayout来保存我的工具栏和TabLayout将解决我的问题,但我需要使用CoordinatorLayout和AppBarLayout来添加滚动功能。

修改

在不同设备上测试后,我发现此问题只发生在较新版本上,如下图所示。

在API 19上: Older version: API 19

在API 23上:

Newer version: API 23

1 个答案:

答案 0 :(得分:2)

问题是我没有为我的FloatingActionMenu指定一个android:提升,所以AppBarLayout出现在菜单的顶部