summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar liamwhite2024-01-20 13:35:30 -0500
committerGravatar GitHub2024-01-20 13:35:30 -0500
commitb3aa3633c7efb129cd829bca5bb4fc655ff7d243 (patch)
treefc02171da1b76287a304f62db834b4aebf988916 /src
parentMerge pull request #12719 from t895/sort-search (diff)
parentandroid: Use elevated card style for home setting card (diff)
downloadyuzu-b3aa3633c7efb129cd829bca5bb4fc655ff7d243.tar.gz
yuzu-b3aa3633c7efb129cd829bca5bb4fc655ff7d243.tar.xz
yuzu-b3aa3633c7efb129cd829bca5bb4fc655ff7d243.zip
Merge pull request #12721 from t895/card-elevation
android: Use elevated card style for home setting card
Diffstat (limited to 'src')
-rw-r--r--src/android/app/src/main/res/layout/card_home_option.xml6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/android/app/src/main/res/layout/card_home_option.xml b/src/android/app/src/main/res/layout/card_home_option.xml
index cb667c928..224ec4d89 100644
--- a/src/android/app/src/main/res/layout/card_home_option.xml
+++ b/src/android/app/src/main/res/layout/card_home_option.xml
@@ -2,16 +2,16 @@
2<com.google.android.material.card.MaterialCardView xmlns:android="http://schemas.android.com/apk/res/android" 2<com.google.android.material.card.MaterialCardView xmlns:android="http://schemas.android.com/apk/res/android"
3 xmlns:app="http://schemas.android.com/apk/res-auto" 3 xmlns:app="http://schemas.android.com/apk/res-auto"
4 xmlns:tools="http://schemas.android.com/tools" 4 xmlns:tools="http://schemas.android.com/tools"
5 style="?attr/materialCardViewFilledStyle" 5 style="?attr/materialCardViewElevatedStyle"
6 android:id="@+id/option_card" 6 android:id="@+id/option_card"
7 android:layout_width="match_parent" 7 android:layout_width="match_parent"
8 android:layout_height="wrap_content" 8 android:layout_height="wrap_content"
9 android:layout_marginBottom="24dp" 9 android:layout_marginBottom="24dp"
10 android:layout_marginHorizontal="12dp" 10 android:layout_marginHorizontal="12dp"
11 android:background="?attr/selectableItemBackground" 11 android:background="?attr/selectableItemBackground"
12 android:backgroundTint="?attr/colorSurfaceVariant"
13 android:clickable="true" 12 android:clickable="true"
14 android:focusable="true"> 13 android:focusable="true"
14 app:cardElevation="4dp">
15 15
16 <LinearLayout 16 <LinearLayout
17 android:id="@+id/option_layout" 17 android:id="@+id/option_layout"