diff options
| author | 2022-09-28 18:55:18 +0800 | |
|---|---|---|
| committer | 2022-10-05 00:22:13 +0000 | |
| commit | 93b08a4435e68ceb549997a78cd17cfcaa75527a (patch) | |
| tree | da1720bccea1a28b1697572fb3b0d93d338e82ec | |
| parent | d8d61664c26e6717d9d702f4fe52b596186cfdd3 (diff) | |
Provide ability to link to color motion page
Bug: 249430287
Test: manual test
Change-Id: I52fb4b3c8725278292954c776fe09ff3f7fcd8cb
| -rw-r--r-- | core/java/android/provider/Settings.java | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/core/java/android/provider/Settings.java b/core/java/android/provider/Settings.java index 9dc099609a48..00633a2a9a26 100644 --- a/core/java/android/provider/Settings.java +++ b/core/java/android/provider/Settings.java @@ -393,6 +393,21 @@ public final class Settings { "android.settings.ACCESSIBILITY_DETAILS_SETTINGS"; /** + * Activity Action: Show settings to allow configuration of accessibility color and motion. + * <p> + * In some cases, a matching Activity may not exist, so ensure you + * safeguard against this. + * <p> + * Input: Nothing. + * <p> + * 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. * <p> * In some cases, a matching Activity may not exist, so ensure you |