mirror of
https://github.com/ArcaneChat/android.git
synced 2026-07-03 14:05:24 +02:00
78dc025b13
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.
29 lines
987 B
XML
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>
|
|
|