Это простой макет для вкладок. Панель уведомлений Android становится белой, когда я переключаюсь на эту страницу. Я попытался изменить цвета и проверил панель уведомлений Android, но она все еще белая, и текст тоже белый. Белый фон + белый текст, поэтому пользователи могут видеть любые уведомления.
Что может быть причиной этого?
скриншот
<?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"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".Tabb">
<com.google.android.material.appbar.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/primaryDark"
android:theme="@style/AppTheme.AppBarOverlay"
android:elevation="3dp">
<TextView
android:id="@+id/title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center"
android:minHeight="?actionBarSize"
android:text="Bookings"
android:layout_marginLeft="20dp"
android:textColor="@color/white"
android:elevation="5dp"
android:textAppearance="@style/TextAppearance.Widget.AppCompat.Toolbar.Title" />
<com.google.android.material.tabs.TabLayout
android:id="@+id/tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/grey"
android:elevation="5dp"/>
</com.google.android.material.appbar.AppBarLayout>
<androidx.viewpager.widget.ViewPager
android:id="@+id/view_pager1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginBottom="?attr/actionBarSize"
android:layout_marginTop="?attr/actionBarSize"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
<com.google.android.material.bottomnavigation.BottomNavigationView
android:id="@+id/bottom_navigation"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
app:itemBackground="@color/grey"
app:itemIconTint="@drawable/selector"
app:menu="@menu/menu_navigation"
app:labelVisibilityMode="unlabeled"/>
</RelativeLayout>