summaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/simple_icon_list_item.xml
diff options
context:
space:
mode:
authorByteHamster <ByteHamster@users.noreply.github.com>2024-03-23 09:40:40 +0100
committerGitHub <noreply@github.com>2024-03-23 09:40:40 +0100
commitf20ce1fc690788273bb779663a4f3211f47a0973 (patch)
treea1192a00bc1b5153d143fa579b8c6f977111c847 /app/src/main/res/layout/simple_icon_list_item.xml
parent376c83d200859ef562d6e3de02602ef18de3e7de (diff)
downloadAntennaPod-f20ce1fc690788273bb779663a4f3211f47a0973.zip
Move first batch of preferences code to :ui:preferences (#7010)
Diffstat (limited to 'app/src/main/res/layout/simple_icon_list_item.xml')
-rw-r--r--app/src/main/res/layout/simple_icon_list_item.xml41
1 files changed, 0 insertions, 41 deletions
diff --git a/app/src/main/res/layout/simple_icon_list_item.xml b/app/src/main/res/layout/simple_icon_list_item.xml
deleted file mode 100644
index 7ed129204..000000000
--- a/app/src/main/res/layout/simple_icon_list_item.xml
+++ /dev/null
@@ -1,41 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<LinearLayout
- 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:orientation="horizontal"
- android:padding="16dp">
-
- <ImageView
- android:layout_width="40dp"
- android:layout_height="40dp"
- android:id="@+id/icon"/>
-
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical"
- android:layout_marginLeft="16dp"
- android:layout_gravity="center_vertical"
- android:layout_marginStart="16dp">
-
- <TextView
- tools:text="Title"
- android:textColor="?android:attr/textColorPrimary"
- android:textSize="16sp"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:id="@+id/title"/>
-
- <TextView
- tools:text="Subtitle"
- android:textColor="?android:attr/textColorSecondary"
- android:textSize="14sp"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:id="@+id/subtitle"/>
-
- </LinearLayout>
-
-</LinearLayout>