summaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/edit_tags_dialog.xml
diff options
context:
space:
mode:
Diffstat (limited to 'app/src/main/res/layout/edit_tags_dialog.xml')
-rw-r--r--app/src/main/res/layout/edit_tags_dialog.xml41
1 files changed, 41 insertions, 0 deletions
diff --git a/app/src/main/res/layout/edit_tags_dialog.xml b/app/src/main/res/layout/edit_tags_dialog.xml
new file mode 100644
index 000000000..2e7774cea
--- /dev/null
+++ b/app/src/main/res/layout/edit_tags_dialog.xml
@@ -0,0 +1,41 @@
+<?xml version="1.0" encoding="utf-8"?>
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:app="http://schemas.android.com/apk/res-auto"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:orientation="vertical"
+ android:padding="16dp">
+
+ <androidx.recyclerview.widget.RecyclerView
+ android:id="@+id/tagsRecycler"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"/>
+
+ <CheckBox
+ android:id="@+id/rootFolderCheckbox"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:text="@string/feed_folders_include_root" />
+
+ <LinearLayout
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:orientation="horizontal">
+
+ <EditText
+ android:layout_width="0dp"
+ android:layout_height="wrap_content"
+ android:layout_weight="1"
+ android:inputType="text"
+ android:ems="10"
+ android:id="@+id/newTagEditText"/>
+
+ <ImageButton
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ app:srcCompat="@drawable/ic_add"
+ android:contentDescription="@string/new_label"
+ android:id="@+id/newTagButton"/>
+ </LinearLayout>
+
+</LinearLayout>