Android DrawerLayout + FAB问题

时间:2016-08-28 00:57:45

标签: android android-layout navigation-drawer floating-action-button

我的Android抽屉布局存在问题,其中包括浮动操作按钮以及GLSurfaceView的自定义实现。

问题在于,当我在布局中使用FAB时,一切都按预期工作。但是,当我从布局中删除FAB时,我得到了一些奇怪的结果。

这是我的layout.xml文件:

<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/drawer_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    tools:context="com.me.myapp.NavDrawerActivity">

    <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:fitsSystemWindows="true"
        tools:context="com.me.myapp.NavDrawerActivity">

        <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="?attr/actionBarSize"
                android:background="?attr/colorPrimary"
                app:popupTheme="@style/AppTheme.PopupOverlay" />

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

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

            <com.me.myapp.MySurfaceView
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:id="@+id/surface"
               />

        </RelativeLayout>

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



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

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

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

看起来像预期的那样: looks ok

但是当我删除FAB标签时,我得到了这个:

enter image description here

我在这里做错了什么?

1 个答案:

答案 0 :(得分:0)

将RelativeLayout更改为:

<RelativeLayout
            android:layout_width="match_parent"
            xmlns:app="http://schemas.android.com/apk/res-auto"
            app:layout_behavior="@string/appbar_scrolling_view_behavior"
            android:layout_height="match_parent">

            <com.me.myapp.MySurfaceView
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:id="@+id/surface"
               />

</RelativeLayout>