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

Commit 40f62640 authored by Vincent Wang's avatar Vincent Wang Committed by Android (Google) Code Review
Browse files

Merge "Add talkback feedback when setting passowrd/pin/pattern complete" into main

parents 08ac0631 54a1c53c
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -12633,4 +12633,7 @@
    <string name="content_protection_preference_subpage_summary"></string>
    <!-- Default information at the bottom of the subpage of content protection settings. Will be overlaid by OEM. -->
    <string name="content_protection_preference_subpage_info"></string>
    <!-- Content description for setting password complete-->
    <string name="accessibility_setup_password_complete">Password is now set up</string>
</resources>
+6 −0
Original line number Diff line number Diff line
@@ -1084,6 +1084,12 @@ public class ChooseLockPassword extends SettingsActivity {
                    startActivity(intent);
                }
            }

            if (mLayout != null) {
                mLayout.announceForAccessibility(
                        getString(R.string.accessibility_setup_password_complete));
            }

            getActivity().finish();
        }

+6 −0
Original line number Diff line number Diff line
@@ -871,6 +871,12 @@ public class ChooseLockPattern extends SettingsActivity {
                    startActivity(intent);
                }
            }

            if (mSudContent != null) {
                mSudContent.announceForAccessibility(
                        getString(R.string.accessibility_setup_password_complete));
            }

            getActivity().finish();
        }
    }