diff options
| author | John Spurlock <jspurlock@google.com> | 2013-09-04 11:26:01 -0400 |
|---|---|---|
| committer | John Spurlock <jspurlock@google.com> | 2013-09-04 15:28:50 +0000 |
| commit | 5e777f668526104e7dd97d3972d35eb7b9eef5a2 (patch) | |
| tree | 482b2980e14e64073cd2da9c52c354d251631b59 /core/java | |
| parent | 40de39171b9ddf49c20600d750b99e4033416665 (diff) | |
| download | frameworks_base-5e777f668526104e7dd97d3972d35eb7b9eef5a2.zip frameworks_base-5e777f668526104e7dd97d3972d35eb7b9eef5a2.tar.gz frameworks_base-5e777f668526104e7dd97d3972d35eb7b9eef5a2.tar.bz2 | |
Re-@hide activity-level FLAG_IMMERSIVE and helpers.
Un-@hidden in api 18, but probably should not have been.
The framework currently takes no action based on the flag,
making the docs misleading.
Bug:10460791
Change-Id: If6cc8791a85710897c8fe77cf6682d1460e3416e
Diffstat (limited to 'core/java')
| -rw-r--r-- | core/java/android/app/Activity.java | 4 | ||||
| -rw-r--r-- | core/java/android/content/pm/ActivityInfo.java | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/core/java/android/app/Activity.java b/core/java/android/app/Activity.java index e02410a..c209b7e 100644 --- a/core/java/android/app/Activity.java +++ b/core/java/android/app/Activity.java @@ -4870,7 +4870,7 @@ public class Activity extends ContextThemeWrapper } /** - * Bit indicating that this activity is "immersive" and should not be + * @hide Bit indicating that this activity is "immersive" and should not be * interrupted by notifications if possible. * * This value is initially set by the manifest property @@ -4953,7 +4953,7 @@ public class Activity extends ContextThemeWrapper } /** - * Adjust the current immersive mode setting. + * @hide Adjust the current immersive mode setting. * * Note that changing this value will have no effect on the activity's * {@link android.content.pm.ActivityInfo} structure; that is, if diff --git a/core/java/android/content/pm/ActivityInfo.java b/core/java/android/content/pm/ActivityInfo.java index 8154bca..4f8a48c 100644 --- a/core/java/android/content/pm/ActivityInfo.java +++ b/core/java/android/content/pm/ActivityInfo.java @@ -161,7 +161,7 @@ public class ActivityInfo extends ComponentInfo */ public static final int FLAG_SHOW_ON_LOCK_SCREEN = 0x0400; /** - * Bit in {@link #flags} corresponding to an immersive activity + * @hide Bit in {@link #flags} corresponding to an immersive activity * that wishes not to be interrupted by notifications. * Applications that hide the system notification bar with * {@link android.view.WindowManager.LayoutParams#FLAG_FULLSCREEN} |
