summaryrefslogtreecommitdiff
path: root/core/java/android/app/Activity.java
diff options
context:
space:
mode:
Diffstat (limited to 'core/java/android/app/Activity.java')
-rw-r--r--core/java/android/app/Activity.java42
1 files changed, 0 insertions, 42 deletions
diff --git a/core/java/android/app/Activity.java b/core/java/android/app/Activity.java
index 773ff7c58f31..f7a9a1848f8d 100644
--- a/core/java/android/app/Activity.java
+++ b/core/java/android/app/Activity.java
@@ -3740,48 +3740,6 @@ public class Activity extends ContextThemeWrapper
return null;
}
- /**
- * 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
- * <code>android:immersive</code> but may be changed at runtime by
- * {@link #setImmersive}.
- *
- * @see android.content.pm.ActivityInfo#FLAG_IMMERSIVE
- * @hide
- */
- public boolean isImmersive() {
- try {
- return ActivityManagerNative.getDefault().isImmersive(mToken);
- } catch (RemoteException e) {
- return false;
- }
- }
-
- /**
- * 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>
- * in the application's manifest entry for this activity, the {@link
- * android.content.pm.ActivityInfo#flags ActivityInfo.flags} member will
- * always have its {@link android.content.pm.ActivityInfo#FLAG_IMMERSIVE
- * FLAG_IMMERSIVE} bit set.
- *
- * @see #isImmersive
- * @see android.content.pm.ActivityInfo#FLAG_IMMERSIVE
- * @hide
- */
- public void setImmersive(boolean i) {
- try {
- ActivityManagerNative.getDefault().setImmersive(mToken, i);
- } catch (RemoteException e) {
- // pass
- }
- }
-
// ------------------ Internal API ------------------
final void setParent(Activity parent) {