diff options
| author | 2019-03-06 11:05:43 +0000 | |
|---|---|---|
| committer | 2019-03-06 11:05:43 +0000 | |
| commit | d23038e5b94275f60ce0e55e522d3fcdfc260a1e (patch) | |
| tree | 94def0251a8f5de55c88b8109be45d3e40898d2b | |
| parent | 46835775cf518ee44408e040353da6e828a6fbce (diff) | |
| parent | 7c09f0b81a258279587b5c41becec90214baaf24 (diff) | |
Merge "Made inheritShowWhenLocked() API public."
| -rw-r--r-- | api/current.txt | 2 | ||||
| -rw-r--r-- | api/system-current.txt | 2 | ||||
| -rw-r--r-- | api/test-current.txt | 1 | ||||
| -rw-r--r-- | core/java/android/app/Activity.java | 5 | ||||
| -rw-r--r-- | core/res/res/values/attrs_manifest.xml | 2 | ||||
| -rw-r--r-- | core/res/res/values/public.xml | 1 |
6 files changed, 4 insertions, 9 deletions
diff --git a/api/current.txt b/api/current.txt index 54814c798c5a..efd2170a8314 100644 --- a/api/current.txt +++ b/api/current.txt @@ -768,6 +768,7 @@ package android { field public static final int indicatorRight = 16843022; // 0x101010e field public static final int indicatorStart = 16843729; // 0x10103d1 field public static final int inflatedId = 16842995; // 0x10100f3 + field public static final int inheritShowWhenLocked = 16844194; // 0x10105a2 field public static final int initOrder = 16842778; // 0x101001a field public static final int initialKeyguardLayout = 16843714; // 0x10103c2 field public static final int initialLayout = 16843345; // 0x1010251 @@ -3850,6 +3851,7 @@ package android.app { method public final void setFeatureDrawableUri(int, android.net.Uri); method public void setFinishOnTouchOutside(boolean); method public void setImmersive(boolean); + method public void setInheritShowWhenLocked(boolean); method public void setIntent(android.content.Intent); method public final void setMediaController(android.media.session.MediaController); method public void setPictureInPictureParams(@NonNull android.app.PictureInPictureParams); diff --git a/api/system-current.txt b/api/system-current.txt index b831785fc523..b646db347b6e 100644 --- a/api/system-current.txt +++ b/api/system-current.txt @@ -211,7 +211,6 @@ package android { public static final class R.attr { field public static final int allowClearUserDataOnFailedRestore = 16844198; // 0x10105a6 - field public static final int inheritShowWhenLocked = 16844194; // 0x10105a2 field public static final int isVrOnly = 16844152; // 0x1010578 field public static final int requiredSystemPropertyName = 16844133; // 0x1010565 field public static final int requiredSystemPropertyValue = 16844134; // 0x1010566 @@ -281,7 +280,6 @@ package android.app { method public boolean convertToTranslucent(android.app.Activity.TranslucentConversionListener, android.app.ActivityOptions); method @Deprecated public boolean isBackgroundVisibleBehind(); method @Deprecated public void onBackgroundVisibleBehindChanged(boolean); - method public void setInheritShowWhenLocked(boolean); } public static interface Activity.TranslucentConversionListener { diff --git a/api/test-current.txt b/api/test-current.txt index b220325f1e0d..bafd1d536513 100644 --- a/api/test-current.txt +++ b/api/test-current.txt @@ -41,7 +41,6 @@ package android.app { public class Activity extends android.view.ContextThemeWrapper implements android.content.ComponentCallbacks2 android.view.KeyEvent.Callback android.view.LayoutInflater.Factory2 android.view.View.OnCreateContextMenuListener android.view.Window.Callback { method public void onMovedToDisplay(int, android.content.res.Configuration); - method public void setInheritShowWhenLocked(boolean); } public class ActivityManager { diff --git a/core/java/android/app/Activity.java b/core/java/android/app/Activity.java index 68b2de425b72..d1d4bd56f1c7 100644 --- a/core/java/android/app/Activity.java +++ b/core/java/android/app/Activity.java @@ -8366,11 +8366,8 @@ public class Activity extends ContextThemeWrapper * screen when this activity has another activity behind it with * the showWhenLock attribute set; {@code false} otherwise. * @see #setShowWhenLocked(boolean) - * See android.R.attr#inheritShowWhenLocked - * @hide + * @see android.R.attr#inheritShowWhenLocked */ - @SystemApi - @TestApi public void setInheritShowWhenLocked(boolean inheritShowWhenLocked) { try { ActivityTaskManager.getService().setInheritShowWhenLocked( diff --git a/core/res/res/values/attrs_manifest.xml b/core/res/res/values/attrs_manifest.xml index 6b8e000777d8..fc7b4cf05b56 100644 --- a/core/res/res/values/attrs_manifest.xml +++ b/core/res/res/values/attrs_manifest.xml @@ -965,7 +965,7 @@ <p>The default value of this attribute is <code>false</code>. --> <attr name="allowEmbedded" format="boolean" /> - <!-- @hide @SystemApi Specifies whether this {@link android.app.Activity} should be shown on + <!-- Specifies whether this {@link android.app.Activity} should be shown on top of the lock screen whenever the lockscreen is up and this activity has another activity behind it with the {@link android.R.attr#showWhenLocked} attribute set. That is, this activity is only visible on the lock screen if there is another activity with diff --git a/core/res/res/values/public.xml b/core/res/res/values/public.xml index 61d530027eaa..b48c6b04eb7e 100644 --- a/core/res/res/values/public.xml +++ b/core/res/res/values/public.xml @@ -2934,7 +2934,6 @@ <public name="foregroundServiceType" /> <public name="hasFragileUserData" /> <public name="minAspectRatio" /> - <!-- @hide @SystemApi --> <public name="inheritShowWhenLocked" /> <public name="zygotePreloadName" /> <public name="useEmbeddedDex" /> |