summaryrefslogtreecommitdiffstats
path: root/app/src/main/res/layout/dialog_bubble_reply_visibility.xml
diff options
context:
space:
mode:
Diffstat (limited to 'app/src/main/res/layout/dialog_bubble_reply_visibility.xml')
-rw-r--r--app/src/main/res/layout/dialog_bubble_reply_visibility.xml35
1 files changed, 35 insertions, 0 deletions
diff --git a/app/src/main/res/layout/dialog_bubble_reply_visibility.xml b/app/src/main/res/layout/dialog_bubble_reply_visibility.xml
new file mode 100644
index 000000000..7739fb3d2
--- /dev/null
+++ b/app/src/main/res/layout/dialog_bubble_reply_visibility.xml
@@ -0,0 +1,35 @@
+<?xml version="1.0" encoding="utf-8"?>
+<androidx.appcompat.widget.LinearLayoutCompat xmlns:android="http://schemas.android.com/apk/res/android"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:orientation="vertical"
+ android:padding="@dimen/fab_margin">
+
+ <RadioGroup
+ android:id="@+id/reply_visibility"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:orientation="vertical">
+
+ <androidx.appcompat.widget.AppCompatRadioButton
+ android:id="@+id/all"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:text="@string/all"
+ android:textSize="16sp" />
+
+ <androidx.appcompat.widget.AppCompatRadioButton
+ android:id="@+id/following"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:text="@string/following"
+ android:textSize="16sp" />
+
+ <androidx.appcompat.widget.AppCompatRadioButton
+ android:id="@+id/self"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:text="@string/self"
+ android:textSize="16sp" />
+ </RadioGroup>
+</androidx.appcompat.widget.LinearLayoutCompat> \ No newline at end of file