fedilab-Android-App/app/src/main/res/layouts/mastodon/layout/dialog_bubble_reply_visibil...

35 lines
1.3 KiB
XML

<?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>