Панель уведомлений вызывает проблемы с DrawerLayout и Activity - PullRequest
0 голосов
/ 12 октября 2018

Я хотел бы добавить пользовательскую панель действий в своем приложении, потому что я использую DrawerLayout, вот проблема:

enter image description here

Вот мойтема:

    <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
        <!-- Customize your theme here. -->
        <item name="colorPrimary">@color/colorPrimary</item>
        <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
        <item name="android:windowTranslucentStatus">true</item>
    </style>

В onCreate() моей деятельности я добавил:

   setContentView(R.layout.activity_talk)
   setSupportActionBar(toolbar)

activity_talk.xml

<android.support.v4.widget.DrawerLayout 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:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:openDrawer="start">

<include
    layout="@layout/app_bar_main"
    />

<include
    layout="@layout/activity_talks_child"
    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"
    android:fitsSystemWindows="true"
    app:headerLayout="@layout/nav_header_main"/>

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

app_bar_main.xml:

<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"
tools:context=".TalksActivity">

<android.support.design.widget.AppBarLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@android:color/holo_red_dark"
    >

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

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

<include layout="@layout/activity_talks_child" />

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

Я не знаю, как выровнять панели действий ...

Спасибо

Ответы [ 2 ]

0 голосов
/ 13 октября 2018

Я наконец нашел решение.

A добавил android:fitsSystemWindows="true" в ConstraintLayout in app_bar_main.xml

Я также добавил эту строку (android:fitsSystemWindows="true") в первый элементфайл nav_header_main.xml (это заголовок Layout, включенный в activity_talk.xml.

0 голосов
/ 12 октября 2018

Вы можете попытаться добавить

android: layout_marginTop

к:

<android.support.v4.widget.DrawerLayout 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:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:openDrawer="start">

Это должно толкнуть весь макет Drawer вниз.

...