将FrameLayout放置在工具栏和底部栏之间

时间:2018-07-20 08:34:28

标签: android android-coordinatorlayout

我完全知道如何使用相对布局或约束布局来做到这一点。 但是我没有通过协调器布局来做到这一点

框架布局似乎与顶部和底部工具栏重叠。

我需要相对布局中的“下方”或“上方”标签。 与协调员进行这种布局的正确方法是什么?

我玩过'app:layout_anchorGravity',但是我没办法正确。

我要做的就是在框架布局内显示片段而不重叠。我不希望我的片段与工具栏重叠,我希望介于

之间

从图像中可以看到,项目号0和项目号1没有显示,它在工具栏后面,也有项目号21、22 谢谢

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout 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.support.design.widget.AppBarLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:theme="@style/AppTheme.AppBarOverlay">
        <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="?android:attr/actionBarSize"
            android:background="@color/colorPrimary"
            app:popupTheme="@style/AppTheme.PopupOverlay" />
    </android.support.design.widget.AppBarLayout>


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

    <android.support.design.widget.AppBarLayout
        android:layout_width="match_parent"
        android:layout_gravity="bottom"
        android:id="@+id/appbar_bottom"
        android:layout_height="wrap_content"
        android:theme="@style/AppTheme.AppBarOverlay">

        <com.aurelhubert.ahbottomnavigation.AHBottomNavigation
            android:id="@+id/bottombar_navigation"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_gravity="bottom"
            android:fitsSystemWindows="true" />
    </android.support.design.widget.AppBarLayout>

    <android.support.design.widget.FloatingActionButton
        android:id="@+id/fab"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="top|end"
        android:layout_margin="@dimen/fab_margin"
        app:layout_anchor="@id/appbar_bottom"
        app:layout_anchorGravity="top|end"
        app:srcCompat="@android:drawable/ic_dialog_email" />

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

enter image description here

2 个答案:

答案 0 :(得分:0)

将ID赋予工具栏为

android:id="@+id/header"

,并在底部加上

android:id="@+id/footer"

现在您可以像这样放置您的FrameLayout

 <FrameLayout
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:layout_above="@id/footer"
    android:layout_below="@id/header"
    android:gravity="center">

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Content goes here"
        android:textColor="@color/ash"
        android:textSize="20sp" />
</FrameLayout>

答案 1 :(得分:0)

请在此处检查更新的版式...它应该可以解决您的问题。

<?xml version="1.0" encoding="utf-8"?>
<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">

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent">


        <android.support.design.widget.AppBarLayout
            android:id="@+id/app_bar"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_alignParentTop="true"
            android:theme="@style/AppTheme.AppBarOverlay">

            <android.support.v7.widget.Toolbar
                android:id="@+id/toolbar"
                android:layout_width="match_parent"
                android:layout_height="?android:attr/actionBarSize"
                android:background="@color/colorPrimary"
                app:popupTheme="@style/AppTheme.PopupOverlay" />
        </android.support.design.widget.AppBarLayout>


        <FrameLayout
            android:id="@+id/framelayout"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_above="@+id/appbar_bottom"
            android:layout_below="@+id/app_bar" />

        <android.support.design.widget.AppBarLayout
            android:id="@+id/appbar_bottom"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_alignParentBottom="true"
            android:layout_gravity="bottom"
            android:theme="@style/AppTheme.AppBarOverlay">

            <com.aurelhubert.ahbottomnavigation.AHBottomNavigation
                android:id="@+id/bottombar_navigation"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_gravity="bottom"
                android:fitsSystemWindows="true" />
        </android.support.design.widget.AppBarLayout>

        <android.support.design.widget.FloatingActionButton
            android:id="@+id/fab"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentBottom="true"
            android:layout_alignParentRight="true"
            android:layout_gravity="top|end"
            android:layout_margin="@dimen/fab_margin"
            app:layout_anchor="@id/appbar_bottom"
            app:layout_anchorGravity="top|end"
            app:srcCompat="@android:drawable/ic_dialog_email" />
    </RelativeLayout>
</android.support.design.widget.CoordinatorLayout>

enter image description here