Toolbar と TabLayout、ViewPager と FloatingActionMenu を含む AppBarLayout のレイアウトを使用しています。
私の問題は、AppBarLayout を使用すると、layout_height=match_parent を使用すると 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 を使用して Toolbar と TabLayout を保持することで問題は解決しますが、CoordinatorLayout と AppBarLayout を使用してスクロール機能を追加する必要があります。
編集:
次の写真でわかるように、さまざまなデバイスでテストした後、この問題は新しいバージョンでのみ発生することがわかりました。
API 23: