Make radio buttons in compose screen sheets full width, fix #1593 (#1645)

main
Ivan Kupalov 4 years ago committed by Konrad Pozniak
parent 584fc54410
commit e23c234f77
  1. 6
      app/src/main/res/layout/activity_compose.xml
  2. 8
      app/src/main/res/layout/view_compose_options.xml

@ -167,7 +167,7 @@
<TextView
android:id="@+id/actionPhotoTake"
android:layout_width="wrap_content"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:drawablePadding="8dp"
android:padding="8dp"
@ -176,7 +176,7 @@
<TextView
android:id="@+id/actionPhotoPick"
android:layout_width="wrap_content"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:drawablePadding="8dp"
android:padding="8dp"
@ -185,7 +185,7 @@
<TextView
android:id="@+id/addPollTextActionTextView"
android:layout_width="wrap_content"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:drawablePadding="8dp"
android:padding="8dp"

@ -15,7 +15,7 @@
<RadioButton
android:id="@+id/publicRadioButton"
android:layout_width="wrap_content"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="4dp"
android:layout_weight="1"
@ -27,7 +27,7 @@
<RadioButton
android:id="@+id/unlistedRadioButton"
android:layout_width="wrap_content"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="4dp"
android:layout_marginTop="4dp"
@ -40,7 +40,7 @@
<RadioButton
android:id="@+id/privateRadioButton"
android:layout_width="wrap_content"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="4dp"
android:layout_marginTop="4dp"
@ -53,7 +53,7 @@
<RadioButton
android:id="@+id/directRadioButton"
android:layout_width="wrap_content"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="4dp"
android:layout_weight="1"

Loading…
Cancel
Save