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

Commit 06d1cdd5 authored by Tadashi G. Takaoka's avatar Tadashi G. Takaoka
Browse files

Add content description to the voice key

Bug: 14849593
Change-Id: I1664b6a4ef54b78a09df65adbffff7861b54c4a9
parent dcd74ba9
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -71,5 +71,6 @@
        android:layout_alignParentEnd="true"
        android:layout_alignParentRight="true"
        android:layout_centerVertical="true"
        android:contentDescription="@string/spoken_description_mic"
        style="?attr/suggestionWordStyle" />
</merge>
+4 −1
Original line number Diff line number Diff line
@@ -381,6 +381,7 @@ final class SuggestionStripLayoutHelper {
        }

        // Disable this suggestion if the suggestion is null or empty.
        // TODO: Fix disabled {@link TextView}'s content description.
        wordView.setEnabled(!TextUtils.isEmpty(word));
        final CharSequence text = getEllipsizedText(word, width, wordView.getPaint());
        final float scaleX = getTextScaleX(word, width, wordView.getPaint());
@@ -424,7 +425,9 @@ final class SuggestionStripLayoutHelper {
            final int countInStrip) {
        // Clear all suggestions first
        for (int positionInStrip = 0; positionInStrip < countInStrip; ++positionInStrip) {
            mWordViews.get(positionInStrip).setText(null);
            final TextView wordView = mWordViews.get(positionInStrip);
            wordView.setText(null);
            wordView.setTag(null);
            // Make this inactive for touches in {@link #layoutWord(int,int)}.
            if (SuggestionStripView.DBG) {
                mDebugInfoViews.get(positionInStrip).setText(null);