diff options
author | Yorke Lee <yorkelee@google.com> | 2013-10-06 18:14:41 -0700 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2013-10-06 18:14:41 -0700 |
commit | 8dc0d9b3a5194f380be736c89f3d92a5ea1f1cee (patch) | |
tree | 1dcc2428fc8b2cb1d29fa33a3f4cc43497c532c8 /res | |
parent | ae45a2f3319b72c5f460a9bd7004842ffcd3829b (diff) | |
parent | da7b945060166baf322602390d7b6911670a7fe9 (diff) |
am da7b9450: am 506ee390: Merge "Fix accessibility issues with dialpad" into klp-dev
* commit 'da7b945060166baf322602390d7b6911670a7fe9':
Fix accessibility issues with dialpad
Diffstat (limited to 'res')
-rw-r--r-- | res/layout/dialpad.xml | 9 | ||||
-rw-r--r-- | res/layout/dialpad_key.xml | 3 |
2 files changed, 8 insertions, 4 deletions
diff --git a/res/layout/dialpad.xml b/res/layout/dialpad.xml index ec850c971..bc910db91 100644 --- a/res/layout/dialpad.xml +++ b/res/layout/dialpad.xml @@ -36,7 +36,8 @@ xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/one" style="@style/DialtactsDialpadButtonStyle" - android:clickable="true" > + android:clickable="true" + android:focusable="true" > <LinearLayout android:layout_width="wrap_content" android:layout_height="match_parent" @@ -85,7 +86,8 @@ xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/star" style="@style/DialtactsDialpadButtonStyle" - android:clickable="true" > + android:clickable="true" + android:focusable="true" > <TextView android:id="@id/dialpad_key_number" android:layout_width="wrap_content" @@ -101,7 +103,8 @@ xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/pound" style="@style/DialtactsDialpadButtonStyle" - android:clickable="true" > + android:clickable="true" + android:focusable="true" > <TextView android:id="@id/dialpad_key_number" android:layout_width="wrap_content" diff --git a/res/layout/dialpad_key.xml b/res/layout/dialpad_key.xml index 074e0235f..e87fde056 100644 --- a/res/layout/dialpad_key.xml +++ b/res/layout/dialpad_key.xml @@ -18,7 +18,8 @@ <com.android.dialer.dialpad.DialpadKeyButton xmlns:android="http://schemas.android.com/apk/res/android" style="@style/DialtactsDialpadButtonStyle" - android:clickable="true" > + android:clickable="true" + android:focusable="true" > <LinearLayout android:layout_width="wrap_content" android:layout_height="match_parent" |