diff options
Diffstat (limited to 'src/android')
| -rw-r--r-- | src/android/app/src/main/res/layout/premium_item_setting.xml | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/src/android/app/src/main/res/layout/premium_item_setting.xml b/src/android/app/src/main/res/layout/premium_item_setting.xml deleted file mode 100644 index 171dd175f..000000000 --- a/src/android/app/src/main/res/layout/premium_item_setting.xml +++ /dev/null | |||
| @@ -1,42 +0,0 @@ | |||
| 1 | <?xml version="1.0" encoding="utf-8"?> | ||
| 2 | <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
| 3 | xmlns:tools="http://schemas.android.com/tools" | ||
| 4 | android:layout_width="match_parent" | ||
| 5 | android:layout_height="wrap_content" | ||
| 6 | android:background="?android:attr/selectableItemBackground" | ||
| 7 | android:clickable="true" | ||
| 8 | android:focusable="true" | ||
| 9 | android:gravity="center_vertical" | ||
| 10 | android:minHeight="72dp" | ||
| 11 | android:paddingBottom="@dimen/spacing_large" | ||
| 12 | android:paddingTop="@dimen/spacing_large"> | ||
| 13 | |||
| 14 | <TextView | ||
| 15 | style="@style/TextAppearance.Material3.HeadlineMedium" | ||
| 16 | android:id="@+id/text_setting_name" | ||
| 17 | android:layout_width="0dp" | ||
| 18 | android:layout_height="wrap_content" | ||
| 19 | android:layout_alignParentEnd="true" | ||
| 20 | android:layout_alignParentStart="true" | ||
| 21 | android:layout_alignParentTop="true" | ||
| 22 | android:layout_marginEnd="@dimen/spacing_large" | ||
| 23 | android:layout_marginStart="@dimen/spacing_large" | ||
| 24 | android:textColor="?attr/colorPrimary" | ||
| 25 | android:textStyle="bold" | ||
| 26 | tools:text="Setting Name" /> | ||
| 27 | |||
| 28 | <TextView | ||
| 29 | android:id="@+id/text_setting_description" | ||
| 30 | android:layout_width="wrap_content" | ||
| 31 | android:layout_height="wrap_content" | ||
| 32 | android:layout_alignParentEnd="true" | ||
| 33 | android:layout_alignParentStart="true" | ||
| 34 | android:layout_alignStart="@+id/text_setting_name" | ||
| 35 | android:layout_below="@+id/text_setting_name" | ||
| 36 | android:layout_marginEnd="@dimen/spacing_large" | ||
| 37 | android:layout_marginStart="@dimen/spacing_large" | ||
| 38 | android:layout_marginTop="@dimen/spacing_small" | ||
| 39 | android:visibility="visible" | ||
| 40 | tools:text="@string/app_disclaimer" /> | ||
| 41 | |||
| 42 | </RelativeLayout> | ||