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

Commit 144be64a authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Fix unknown items issue when using Switch Access"

parents bca152e9 9b302869
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -24,7 +24,6 @@
    android:paddingEnd="?android:attr/listPreferredItemPaddingEnd"
    android:background="?android:attr/selectableItemBackground"
    android:orientation="vertical"
    android:importantForAccessibility = "no"
    android:clipToPadding="false">

    <LinearLayout
+0 −1
Original line number Diff line number Diff line
@@ -23,7 +23,6 @@
    android:paddingStart="?android:attr/listPreferredItemPaddingStart"
    android:paddingEnd="?android:attr/listPreferredItemPaddingEnd"
    android:background="?android:attr/selectableItemBackground"
    android:importantForAccessibility = "no"
    android:clipToPadding="false">

    <LinearLayout
+2 −0
Original line number Diff line number Diff line
@@ -61,6 +61,7 @@ public class FooterPreference extends Preference {
        title.setMovementMethod(new LinkMovementMethod());
        title.setClickable(false);
        title.setLongClickable(false);
        title.setFocusable(false);
        if (!TextUtils.isEmpty(mContentDescription)) {
            title.setContentDescription(mContentDescription);
        }
@@ -79,6 +80,7 @@ public class FooterPreference extends Preference {
            if (!TextUtils.isEmpty(mLearnMoreContentDescription)) {
                learnMore.setContentDescription(mLearnMoreContentDescription);
            }
            learnMore.setFocusable(false);
        } else {
            learnMore.setVisibility(View.GONE);
        }