Преглед на файлове

android: Fix background color within inset areas

Charles Lombardo преди 3 години
родител
ревизия
a0a0703f30
променени са 2 файла, в които са добавени 4 реда и са изтрити 2 реда
  1. 2 1
      src/android/app/src/main/res/layout-w600dp/activity_main.xml
  2. 2 1
      src/android/app/src/main/res/layout/activity_main.xml

+ 2 - 1
src/android/app/src/main/res/layout-w600dp/activity_main.xml

@@ -5,7 +5,8 @@
     xmlns:tools="http://schemas.android.com/tools"
     android:id="@+id/coordinator_main"
     android:layout_width="match_parent"
-    android:layout_height="match_parent">
+    android:layout_height="match_parent"
+    android:background="?attr/colorSurface">
 
     <androidx.fragment.app.FragmentContainerView
         android:id="@+id/fragment_container"

+ 2 - 1
src/android/app/src/main/res/layout/activity_main.xml

@@ -5,7 +5,8 @@
     xmlns:tools="http://schemas.android.com/tools"
     android:id="@+id/coordinator_main"
     android:layout_width="match_parent"
-    android:layout_height="match_parent">
+    android:layout_height="match_parent"
+    android:background="?attr/colorSurface">
 
     <androidx.fragment.app.FragmentContainerView
         android:id="@+id/fragment_container"