DrawerLayout не показывает правильный цвет фона во включенном XML-файле в Android - PullRequest
0 голосов
/ 02 мая 2019

Я использую DrawerLayout, и я включил свой макет с помощью тега include, цвет фона моего включенного XML-макета - черный, но в качестве цвета фона он показывает вид # 292727 (немного серый).Если я запускаю макет без DrawerLayout, он показывает цвет как определено, но когда я использую DrawerLayout, он показывает неподходящий цвет.

Совместное использование кода ниже,

main_activity_with_drawer.xml

<?xml version="1.0" encoding="utf-8"?>
<androidx.drawerlayout.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"
android:fitsSystemWindows="true"
tools:openDrawer="start">

<include

    layout="@layout/activity_content"
    android:layout_width="match_parent"
    android:layout_height="match_parent" />

    <com.google.android.material.navigation.NavigationView
    android:id="@+id/nav_view"
    android:layout_width="94dp"
    android:layout_height="match_parent"
    android:layout_gravity="start"
    android:fitsSystemWindows="false">

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

</com.google.android.material.navigation.NavigationView>

</androidx.drawerlayout.widget.DrawerLayout>

activity_content.xml

<?xml version="1.0" encoding="utf-8"?>

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/mainLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#000000">

<ImageView> ....  </ImageView>
<Button> ....  </Button>

</RelativeLayout> 
...