summaryrefslogtreecommitdiffstats
path: root/core/java/android/app
diff options
context:
space:
mode:
authorChristopher Tate <ctate@google.com>2012-12-11 16:13:51 -0800
committerAndroid Git Automerger <android-git-automerger@android.com>2012-12-11 16:13:51 -0800
commit1de623939090993d03a7c398d09e2d13950d682b (patch)
tree12dc222d55bfc246146d8e0bc6eb3bab4799d326 /core/java/android/app
parent8f276515ea7204f54c773c29eb14a9346f2fa973 (diff)
parent534de491e6522465a7ad12d7cba9b2f80deab364 (diff)
downloadframeworks_base-1de623939090993d03a7c398d09e2d13950d682b.zip
frameworks_base-1de623939090993d03a7c398d09e2d13950d682b.tar.gz
frameworks_base-1de623939090993d03a7c398d09e2d13950d682b.tar.bz2
am 534de491: Merge "Make immersive mode public & imply update locking" into jb-mr1-aah-dev
* commit '534de491e6522465a7ad12d7cba9b2f80deab364': Make immersive mode public & imply update locking
Diffstat (limited to 'core/java/android/app')
-rw-r--r--core/java/android/app/Activity.java7
1 files changed, 3 insertions, 4 deletions
diff --git a/core/java/android/app/Activity.java b/core/java/android/app/Activity.java
index f6b9a8e..cbeffc1 100644
--- a/core/java/android/app/Activity.java
+++ b/core/java/android/app/Activity.java
@@ -4818,8 +4818,8 @@ public class Activity extends ContextThemeWrapper
* <code>android:immersive</code> but may be changed at runtime by
* {@link #setImmersive}.
*
+ * @see #setImmersive(boolean)
* @see android.content.pm.ActivityInfo#FLAG_IMMERSIVE
- * @hide
*/
public boolean isImmersive() {
try {
@@ -4831,7 +4831,7 @@ public class Activity extends ContextThemeWrapper
/**
* 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
* <code>android:immersive</code> is set to <code>true</code>
@@ -4840,9 +4840,8 @@ public class Activity extends ContextThemeWrapper
* always have its {@link android.content.pm.ActivityInfo#FLAG_IMMERSIVE
* FLAG_IMMERSIVE} bit set.
*
- * @see #isImmersive
+ * @see #isImmersive()
* @see android.content.pm.ActivityInfo#FLAG_IMMERSIVE
- * @hide
*/
public void setImmersive(boolean i) {
try {