Procházet zdrojové kódy

Merge pull request #154 from nextcloud/whiteBottomSheetBackground

Fix bottom sheet background color
Mario Đanić před 7 roky
rodič
revize
2ad2ea79e3

+ 6 - 5
app/src/main/res/layout/rv_item_app.xml

@@ -20,11 +20,12 @@
   -->
 
 <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:layout_marginBottom="16dp"
-                android:layout_marginTop="16dp">
+    xmlns:tools="http://schemas.android.com/tools"
+    android:layout_width="match_parent"
+    android:layout_height="wrap_content"
+    android:background="@color/white"
+    android:paddingBottom="16dp"
+    android:paddingTop="16dp">
 
     <ImageView
         android:id="@+id/icon_image_view"

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

@@ -24,7 +24,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:layout_height="wrap_content"
+    android:background="@color/white">
 
     <TextView
         android:id="@+id/menu_text"