summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCharles Lombardo <clombardo169@gmail.com>2023-03-22 09:50:35 +0100
committerbunnei <bunneidev@gmail.com>2023-06-03 09:05:45 +0200
commit87211c8aeca41fd6350b3e736671fa2f702fa9cb (patch)
tree1028f92924e0047a9555ae24455f2cc148653e73
parentandroid: Remove unused fragment animations (diff)
downloadyuzu-87211c8aeca41fd6350b3e736671fa2f702fa9cb.tar
yuzu-87211c8aeca41fd6350b3e736671fa2f702fa9cb.tar.gz
yuzu-87211c8aeca41fd6350b3e736671fa2f702fa9cb.tar.bz2
yuzu-87211c8aeca41fd6350b3e736671fa2f702fa9cb.tar.lz
yuzu-87211c8aeca41fd6350b3e736671fa2f702fa9cb.tar.xz
yuzu-87211c8aeca41fd6350b3e736671fa2f702fa9cb.tar.zst
yuzu-87211c8aeca41fd6350b3e736671fa2f702fa9cb.zip
-rw-r--r--src/android/app/src/main/res/layout/premium_item_setting.xml42
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 @@
-<?xml version="1.0" encoding="utf-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:background="?android:attr/selectableItemBackground"
- android:clickable="true"
- android:focusable="true"
- android:gravity="center_vertical"
- android:minHeight="72dp"
- android:paddingBottom="@dimen/spacing_large"
- android:paddingTop="@dimen/spacing_large">
-
- <TextView
- style="@style/TextAppearance.Material3.HeadlineMedium"
- android:id="@+id/text_setting_name"
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_alignParentEnd="true"
- android:layout_alignParentStart="true"
- android:layout_alignParentTop="true"
- android:layout_marginEnd="@dimen/spacing_large"
- android:layout_marginStart="@dimen/spacing_large"
- android:textColor="?attr/colorPrimary"
- android:textStyle="bold"
- tools:text="Setting Name" />
-
- <TextView
- android:id="@+id/text_setting_description"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignParentEnd="true"
- android:layout_alignParentStart="true"
- android:layout_alignStart="@+id/text_setting_name"
- android:layout_below="@+id/text_setting_name"
- android:layout_marginEnd="@dimen/spacing_large"
- android:layout_marginStart="@dimen/spacing_large"
- android:layout_marginTop="@dimen/spacing_small"
- android:visibility="visible"
- tools:text="@string/app_disclaimer" />
-
-</RelativeLayout>