From 93b08a4435e68ceb549997a78cd17cfcaa75527a Mon Sep 17 00:00:00 2001 From: menghanli Date: Wed, 28 Sep 2022 18:55:18 +0800 Subject: [PATCH] Provide ability to link to color motion page Bug: 249430287 Test: manual test Change-Id: I52fb4b3c8725278292954c776fe09ff3f7fcd8cb --- core/java/android/provider/Settings.java | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/core/java/android/provider/Settings.java b/core/java/android/provider/Settings.java index 9dc099609a48c..00633a2a9a26c 100644 --- a/core/java/android/provider/Settings.java +++ b/core/java/android/provider/Settings.java @@ -392,6 +392,21 @@ public final class Settings { public static final String ACTION_ACCESSIBILITY_DETAILS_SETTINGS = "android.settings.ACCESSIBILITY_DETAILS_SETTINGS"; + /** + * Activity Action: Show settings to allow configuration of accessibility color and motion. + *

+ * In some cases, a matching Activity may not exist, so ensure you + * safeguard against this. + *

+ * Input: Nothing. + *

+ * Output: Nothing. + * @hide + */ + @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION) + public static final String ACTION_ACCESSIBILITY_COLOR_MOTION_SETTINGS = + "android.settings.ACCESSIBILITY_COLOR_MOTION_SETTINGS"; + /** * Activity Action: Show settings to allow configuration of Reduce Bright Colors. *