Сортировка двойной панели инструментов в проекте Android с ящиком / фрагмент - PullRequest
0 голосов
/ 30 сентября 2018

Я делаю приложение для Android, но у меня проблема.Под первой находится вторая панель инструментов.Я не хочу менять размер / место на панели с надписью PrysonBeta, я просто хочу удалить панель ниже.(См. Рисунок)

https://user -images.githubusercontent.com / 19932552/28820275-b265e796-76b9-11e7-9d29-e64ae3a09a9d.png

Вот мойcode:

    <?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>

В своей основной деятельности я использую:

 Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
 setSupportActionBar(toolbar);

Я часто вижу людей, говорящих android: fitsSystemWindows = "false" с true или false может исправить это, но этоникогда не делал по моему делу.

1 Ответ

0 голосов
/ 30 сентября 2018

в вашем файле styles.xml попробуйте это

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