diff options
4 files changed, 45 insertions, 37 deletions
diff --git a/core/java/android/view/accessibility/flags/accessibility_flags.aconfig b/core/java/android/view/accessibility/flags/accessibility_flags.aconfig index cc612ed93b2f..6888b50bb744 100644 --- a/core/java/android/view/accessibility/flags/accessibility_flags.aconfig +++ b/core/java/android/view/accessibility/flags/accessibility_flags.aconfig @@ -1,10 +1,12 @@ package: "android.view.accessibility" +# NOTE: Keep alphabetized to help limit merge conflicts from multiple simultaneous editors. + flag { + name: "a11y_overlay_callbacks" namespace: "accessibility" - name: "force_invert_color" - description: "Enable force force-dark for smart inversion and dark theme everywhere" - bug: "282821643" + description: "Whether to allow the passing of result callbacks when attaching a11y overlays." + bug: "304478691" } flag { @@ -15,8 +17,8 @@ flag { } flag { - name: "a11y_overlay_callbacks" namespace: "accessibility" - description: "Whether to allow the passing of result callbacks when attaching a11y overlays." - bug: "304478691" + name: "force_invert_color" + description: "Enable force force-dark for smart inversion and dark theme everywhere" + bug: "282821643" } diff --git a/packages/SystemUI/accessibility/accessibilitymenu/aconfig/accessibility.aconfig b/packages/SystemUI/accessibility/accessibilitymenu/aconfig/accessibility.aconfig index 0f55f35adc4e..eadcd7c27a18 100644 --- a/packages/SystemUI/accessibility/accessibilitymenu/aconfig/accessibility.aconfig +++ b/packages/SystemUI/accessibility/accessibilitymenu/aconfig/accessibility.aconfig @@ -1,15 +1,17 @@ package: "com.android.systemui.accessibility.accessibilitymenu" -flag { - name: "a11y_menu_settings_back_button_fix_and_large_button_sizing" - namespace: "accessibility" - description: "Provides/restores back button functionality for the a11yMenu settings page. Also, fixes sizing problems with large shortcut buttons." - bug: "298467628" -} +# NOTE: Keep alphabetized to help limit merge conflicts from multiple simultaneous editors. flag { name: "a11y_menu_hide_before_taking_action" namespace: "accessibility" description: "Hides the AccessibilityMenuService UI before taking action instead of after." bug: "292020123" -}
\ No newline at end of file +} + +flag { + name: "a11y_menu_settings_back_button_fix_and_large_button_sizing" + namespace: "accessibility" + description: "Provides/restores back button functionality for the a11yMenu settings page. Also, fixes sizing problems with large shortcut buttons." + bug: "298467628" +} diff --git a/packages/SystemUI/aconfig/accessibility.aconfig b/packages/SystemUI/aconfig/accessibility.aconfig index 8841967b1535..bcf1535b94fa 100644 --- a/packages/SystemUI/aconfig/accessibility.aconfig +++ b/packages/SystemUI/aconfig/accessibility.aconfig @@ -1,5 +1,7 @@ package: "com.android.systemui" +# NOTE: Keep alphabetized to help limit merge conflicts from multiple simultaneous editors. + flag { name: "floating_menu_overlaps_nav_bars_flag" namespace: "accessibility" diff --git a/services/accessibility/accessibility.aconfig b/services/accessibility/accessibility.aconfig index 1a735f89a2bc..75ecdb78fe00 100644 --- a/services/accessibility/accessibility.aconfig +++ b/services/accessibility/accessibility.aconfig @@ -1,38 +1,40 @@ package: "com.android.server.accessibility" +# NOTE: Keep alphabetized to help limit merge conflicts from multiple simultaneous editors. + flag { - name: "proxy_use_apps_on_virtual_device_listener" + name: "add_window_token_without_lock" namespace: "accessibility" - description: "Fixes race condition described in b/286587811" - bug: "286587811" + description: "Calls WMS.addWindowToken without holding A11yManagerService#mLock" + bug: "297972548" } flag { - name: "enable_magnification_multiple_finger_multiple_tap_gesture" + name: "deprecate_package_list_observer" namespace: "accessibility" - description: "Whether to enable multi-finger-multi-tap gesture for magnification" - bug: "257274411" + description: "Stops using the deprecated PackageListObserver." + bug: "304561459" } flag { - name: "enable_magnification_joystick" + name: "disable_continuous_shortcut_on_force_stop" namespace: "accessibility" - description: "Whether to enable joystick controls for magnification" - bug: "297211257" + description: "When a package is force stopped, remove the button shortcuts of any continuously-running shortcuts." + bug: "198018180" } flag { - name: "send_a11y_events_based_on_state" + name: "enable_magnification_joystick" namespace: "accessibility" - description: "Sends accessibility events in TouchExplorer#onAccessibilityEvent based on internal state to keep it consistent. This reduces test flakiness." - bug: "295575684" + description: "Whether to enable joystick controls for magnification" + bug: "297211257" } flag { - name: "add_window_token_without_lock" + name: "enable_magnification_multiple_finger_multiple_tap_gesture" namespace: "accessibility" - description: "Calls WMS.addWindowToken without holding A11yManagerService#mLock" - bug: "297972548" + description: "Whether to enable multi-finger-multi-tap gesture for magnification" + bug: "257274411" } flag { @@ -43,17 +45,17 @@ flag { } flag { - name: "disable_continuous_shortcut_on_force_stop" + name: "proxy_use_apps_on_virtual_device_listener" namespace: "accessibility" - description: "When a package is force stopped, remove the button shortcuts of any continuously-running shortcuts." - bug: "198018180" + description: "Fixes race condition described in b/286587811" + bug: "286587811" } flag { - name: "deprecate_package_list_observer" + name: "reduce_touch_exploration_sensitivity" namespace: "accessibility" - description: "Stops using the deprecated PackageListObserver." - bug: "304561459" + description: "Reduces touch exploration sensitivity by only sending a hover event when the ifnger has moved the amount of pixels defined by the system's touch slop." + bug: "303677860" } flag { @@ -64,8 +66,8 @@ flag { } flag { - name: "reduce_touch_exploration_sensitivity" + name: "send_a11y_events_based_on_state" namespace: "accessibility" - description: "Reduces touch exploration sensitivity by only sending a hover event when the ifnger has moved the amount of pixels defined by the system's touch slop." - bug: "303677860" + description: "Sends accessibility events in TouchExplorer#onAccessibilityEvent based on internal state to keep it consistent. This reduces test flakiness." + bug: "295575684" } |