diff options
author | t895 <clombardo169@gmail.com> | 2024-01-20 09:55:48 +0100 |
---|---|---|
committer | t895 <clombardo169@gmail.com> | 2024-01-20 09:55:48 +0100 |
commit | 378e4752a620fc7fd2990775aaa7f694e2bf7fa1 (patch) | |
tree | f972040743b93d48d02244998a210636ce242ea5 | |
parent | Merge pull request #12713 from shinra-electric/mvk-127 (diff) | |
download | yuzu-378e4752a620fc7fd2990775aaa7f694e2bf7fa1.tar yuzu-378e4752a620fc7fd2990775aaa7f694e2bf7fa1.tar.gz yuzu-378e4752a620fc7fd2990775aaa7f694e2bf7fa1.tar.bz2 yuzu-378e4752a620fc7fd2990775aaa7f694e2bf7fa1.tar.lz yuzu-378e4752a620fc7fd2990775aaa7f694e2bf7fa1.tar.xz yuzu-378e4752a620fc7fd2990775aaa7f694e2bf7fa1.tar.zst yuzu-378e4752a620fc7fd2990775aaa7f694e2bf7fa1.zip |
-rw-r--r-- | src/android/app/src/main/res/layout/card_home_option.xml | 6 |
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 @@ <com.google.android.material.card.MaterialCardView 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" - style="?attr/materialCardViewFilledStyle" + style="?attr/materialCardViewElevatedStyle" android:id="@+id/option_card" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginBottom="24dp" android:layout_marginHorizontal="12dp" android:background="?attr/selectableItemBackground" - android:backgroundTint="?attr/colorSurfaceVariant" android:clickable="true" - android:focusable="true"> + android:focusable="true" + app:cardElevation="4dp"> <LinearLayout android:id="@+id/option_layout" |