Fix #2771: Location of Checkbox in Permission Request Dialog (#2772)

This commit is contained in:
Madhur Gupta 2019-03-28 04:09:21 +05:30 committed by Adam Jones
parent e14a9c17b2
commit 995de60ca2

View file

@ -1,13 +1,16 @@
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<CheckBox
android:id="@+id/never_ask_again"
style="?android:attr/textAppearanceMedium"
android:layout_width="fill_parent"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/never_ask_again"
android:layout_margin="5dp" />
android:layout_marginTop="5dp"
android:layout_marginBottom="5dp"
android:layout_marginEnd="20dp"
android:layout_marginStart="20dp"/>
</FrameLayout>