summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Charles Lombardo2023-03-22 04:50:35 -0400
committerGravatar bunnei2023-06-03 00:05:45 -0700
commit87211c8aeca41fd6350b3e736671fa2f702fa9cb (patch)
tree1028f92924e0047a9555ae24455f2cc148653e73 /src
parentandroid: Remove unused fragment animations (diff)
downloadyuzu-87211c8aeca41fd6350b3e736671fa2f702fa9cb.tar.gz
yuzu-87211c8aeca41fd6350b3e736671fa2f702fa9cb.tar.xz
yuzu-87211c8aeca41fd6350b3e736671fa2f702fa9cb.zip
android: Remove unused premium header layout
Diffstat (limited to 'src')
-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 @@
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>