aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/item_custom_theme.xml
diff options
context:
space:
mode:
authorAlex Ning <chineseperson5@gmail.com>2020-03-19 14:30:57 +0000
committerAlex Ning <chineseperson5@gmail.com>2020-03-19 14:30:57 +0000
commit9e4dec362dc575e44be99e650cb4c4b1e031644c (patch)
tree7eda3af7261d0871633326b1a0b71b530224ab9f /app/src/main/res/layout/item_custom_theme.xml
parent012736bff62005c8c61f5844529fc5216af1e885 (diff)
downloadinfinity-for-reddit-9e4dec362dc575e44be99e650cb4c4b1e031644c.tar
infinity-for-reddit-9e4dec362dc575e44be99e650cb4c4b1e031644c.tar.gz
infinity-for-reddit-9e4dec362dc575e44be99e650cb4c4b1e031644c.tar.bz2
infinity-for-reddit-9e4dec362dc575e44be99e650cb4c4b1e031644c.tar.lz
infinity-for-reddit-9e4dec362dc575e44be99e650cb4c4b1e031644c.tar.xz
infinity-for-reddit-9e4dec362dc575e44be99e650cb4c4b1e031644c.tar.zst
infinity-for-reddit-9e4dec362dc575e44be99e650cb4c4b1e031644c.zip
Still implementing custom theme settings.
Diffstat (limited to 'app/src/main/res/layout/item_custom_theme.xml')
-rw-r--r--app/src/main/res/layout/item_custom_theme.xml22
1 files changed, 22 insertions, 0 deletions
diff --git a/app/src/main/res/layout/item_custom_theme.xml b/app/src/main/res/layout/item_custom_theme.xml
new file mode 100644
index 00000000..1aba3472
--- /dev/null
+++ b/app/src/main/res/layout/item_custom_theme.xml
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="utf-8"?>
+<LinearLayout
+ xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:padding="16dp"
+ android:clickable="true"
+ android:focusable="true"
+ android:background="?attr/selectableItemBackground">
+
+ <View
+ android:id="@+id/color_primary_item_custom_theme"
+ android:layout_width="24dp"
+ android:layout_height="24dp"
+ android:background="@drawable/circular_background" />
+
+ <TextView
+ android:id="@+id/name_text_view_item_custom_theme"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_marginStart="32dp" />
+
+</LinearLayout> \ No newline at end of file