有点像android项目中的双工具栏,带有抽屉/碎片

有点像android项目中的双工具栏,带有抽屉/碎片,android,toolbar,Android,Toolbar,我做了一个android应用程序,但我有一个问题。第一个工具栏下面有第二个工具栏。我不想更改带有PrysonBeta的条的大小/位置,我只想删除下面的条。看图 这是我的密码: <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.and

我做了一个android应用程序,但我有一个问题。第一个工具栏下面有第二个工具栏。我不想更改带有PrysonBeta的条的大小/位置,我只想删除下面的条。看图

这是我的密码:

    <?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

    <android.support.design.widget.AppBarLayout
        android:id="@+id/nav_bar"
        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="match_parent"
            android:background="?attr/colorPrimary" />
    </android.support.design.widget.AppBarLayout>


    <android.support.v4.widget.DrawerLayout
        xmlns:app="http://schemas.android.com/apk/res-auto"
        xmlns:tools="http://schemas.android.com/tools"
        android:id="@+id/drawer_layout"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:fitsSystemWindows="false"
        android:layout_marginTop="?attr/actionBarSize"
        tools:openDrawer="start">

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

        <android.support.design.widget.NavigationView
            android:id="@+id/nav_view"
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:layout_gravity="start"
            app:headerLayout="@layout/nav_header_main"
            app:menu="@menu/activity_main_drawer" />
    </android.support.v4.widget.DrawerLayout>

</RelativeLayout>

我经常看到有人说android:fitsystemwindows=false加上true或false可以修复它,但在我的案例中从来没有这样做过。

在your styles.xml中试试这个

 <style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
 <style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">