Skip to content

Commit 995de60

Browse files
madhurgupta10domdomegg
authored andcommitted
Fix commons-app#2771: Location of Checkbox in Permission Request Dialog (commons-app#2772)
1 parent e14a9c1 commit 995de60

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,16 @@
11
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
2-
android:layout_width="fill_parent"
2+
android:layout_width="match_parent"
33
android:layout_height="wrap_content" >
44

55
<CheckBox
66
android:id="@+id/never_ask_again"
77
style="?android:attr/textAppearanceMedium"
8-
android:layout_width="fill_parent"
8+
android:layout_width="wrap_content"
99
android:layout_height="wrap_content"
1010
android:text="@string/never_ask_again"
11-
android:layout_margin="5dp" />
11+
android:layout_marginTop="5dp"
12+
android:layout_marginBottom="5dp"
13+
android:layout_marginEnd="20dp"
14+
android:layout_marginStart="20dp"/>
1215

1316
</FrameLayout>

0 commit comments

Comments
 (0)