Skip to content

Commit

Permalink
Fix #2325: Changes in Cellular dialog[a11y] (#2519)
Browse files Browse the repository at this point in the history
Fixes Issue 2 of #2325 by increasing the clickable checkbox minimum height to be 28dp
  • Loading branch information
Arjupta authored Jan 21, 2021
1 parent d305f94 commit 3c32562
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion app/src/main/res/layout/cellular_data_dialog.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="@dimen/cellular_data_dialog_padding">
android:paddingStart="@dimen/cellular_data_dialog_padding"
android:paddingEnd="@dimen/cellular_data_dialog_padding">

<CheckBox
android:id="@+id/cellular_data_dialog_checkbox"
Expand All @@ -11,6 +12,8 @@
android:fontFamily="sans-serif"
android:paddingStart="16dp"
android:paddingEnd="16dp"
android:paddingTop="@dimen/cellular_data_dialog_padding"
android:paddingBottom="@dimen/cellular_data_dialog_padding"
android:text="@string/cellular_data_alert_dialog_checkbox"
android:textColor="@color/black_54"
android:textSize="16sp" />
Expand Down

0 comments on commit 3c32562

Please sign in to comment.