Files
arcanechat-android/res/layout/dialog_extended_options.xml
T
bjoern 78dc025b13 tweak padding of disappearing messages options (#1507)
headline and buttons have about 20dp padding,
the the same for left/right,
adapt top/bottom to look good in combination with headline and buttons.
2020-07-28 09:41:06 +02:00

29 lines
987 B
XML

<?xml version="1.0" encoding="utf-8"?>
<ScrollView android:layout_width="match_parent"
android:layout_height="wrap_content"
xmlns:android="http://schemas.android.com/apk/res/android">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingLeft="20dp"
android:paddingRight="20dp"
android:paddingTop="20dp"
android:paddingBottom="10dp"
android:orientation="vertical">
<RadioGroup
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/optionsContainer"
/>
<TextView
android:id="@+id/description"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingTop="16dp"
/>
</LinearLayout>
</ScrollView>