diff options
| author | 2021-04-12 19:27:26 +0000 | |
|---|---|---|
| committer | 2021-04-12 19:27:26 +0000 | |
| commit | 1b689fe01b9101cc5dd39607f99107380dc94f5c (patch) | |
| tree | 3055c34108095657e40a0eaeb6a2c7172ca86156 | |
| parent | fcfa35e1190f29aec530b4cd8739cb8ee1cc24be (diff) | |
| parent | 8a86b1dd88bba74e34579c3aeb03b28b76b1dbde (diff) | |
Merge "[SettingsProvider] specify settings type in the comments" into sc-dev
| -rw-r--r-- | core/java/android/provider/Settings.java | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/core/java/android/provider/Settings.java b/core/java/android/provider/Settings.java index 427158ac411d..0d6032366712 100644 --- a/core/java/android/provider/Settings.java +++ b/core/java/android/provider/Settings.java @@ -13327,23 +13327,27 @@ public final class Settings { "adb_allowed_connection_time"; /** - * Scaling factor for normal window animations. Setting to 0 will - * disable window animations. + * Scaling factor for normal window animations. + * + * The value is a float. Setting to 0.0f will disable window animations. */ @Readable public static final String WINDOW_ANIMATION_SCALE = "window_animation_scale"; /** - * Scaling factor for activity transition animations. Setting to 0 will - * disable window animations. + * Scaling factor for activity transition animations. + * + * The value is a float. Setting to 0.0f will disable window animations. */ @Readable public static final String TRANSITION_ANIMATION_SCALE = "transition_animation_scale"; /** * Scaling factor for Animator-based animations. This affects both the - * start delay and duration of all such animations. Setting to 0 will - * cause animations to end immediately. The default value is 1. + * start delay and duration of all such animations. + * + * The value is a float. Setting to 0.0f will cause animations to end immediately. + * The default value is 1.0f. */ @Readable public static final String ANIMATOR_DURATION_SCALE = "animator_duration_scale"; |