Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 506ee390 authored by Yorke Lee's avatar Yorke Lee Committed by Android (Google) Code Review
Browse files

Merge "Fix accessibility issues with dialpad" into klp-dev

parents facc9766 32faffb7
Loading
Loading
Loading
Loading
+6 −3
Original line number Diff line number Diff line
@@ -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"
+2 −1
Original line number Diff line number Diff line
@@ -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"
+1 −0
Original line number Diff line number Diff line
@@ -1704,6 +1704,7 @@ public class DialpadFragment extends Fragment
            activity.showSearchBar();
        } else {
            activity.hideSearchBar();
            mDigits.requestFocus();
        }
    }