Make the private DNS mode dialog entries full width.

Using wrap_content requires to tap on the text specifically, while the
full width usually works for this kind of dialogs.

Change-Id: I95035202c1a3b3bdcbd91a4ff0e60f42392a3ba5
Fixes: 132914632
Test: Screenshot
This commit is contained in:
Marc Plano-Lesay
2019-05-16 10:09:20 +10:00
parent f84633ec79
commit fcb000cf0c

View File

@@ -33,7 +33,7 @@
<RadioButton
android:id="@+id/private_dns_mode_off"
android:text="@string/private_dns_mode_off"
android:layout_width="wrap_content"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginStart="8dp"
android:minHeight="48dp"/>
@@ -41,7 +41,7 @@
<RadioButton
android:id="@+id/private_dns_mode_opportunistic"
android:text="@string/private_dns_mode_opportunistic"
android:layout_width="wrap_content"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginStart="8dp"
android:minHeight="48dp"/>
@@ -49,7 +49,7 @@
<RadioButton
android:id="@+id/private_dns_mode_provider"
android:text="@string/private_dns_mode_provider"
android:layout_width="wrap_content"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginStart="8dp"
android:minHeight="48dp"/>