Loading api/current.txt +1 −0 Original line number Diff line number Diff line Loading @@ -1425,6 +1425,7 @@ package android { field public static final int viewportWidth = 16843778; // 0x1010402 field public static final int visibility = 16842972; // 0x10100dc field public static final int visible = 16843156; // 0x1010194 field public static final int visibleToEphemeral = 16844095; // 0x101053f field public static final int vmSafeMode = 16843448; // 0x10102b8 field public static final int voiceIcon = 16843908; // 0x1010484 field public static final int voiceLanguage = 16843349; // 0x1010255 api/system-current.txt +1 −0 Original line number Diff line number Diff line Loading @@ -1536,6 +1536,7 @@ package android { field public static final int viewportWidth = 16843778; // 0x1010402 field public static final int visibility = 16842972; // 0x10100dc field public static final int visible = 16843156; // 0x1010194 field public static final int visibleToEphemeral = 16844095; // 0x101053f field public static final int vmSafeMode = 16843448; // 0x10102b8 field public static final int voiceIcon = 16843908; // 0x1010484 field public static final int voiceLanguage = 16843349; // 0x1010255 api/test-current.txt +1 −0 Original line number Diff line number Diff line Loading @@ -1425,6 +1425,7 @@ package android { field public static final int viewportWidth = 16843778; // 0x1010402 field public static final int visibility = 16842972; // 0x10100dc field public static final int visible = 16843156; // 0x1010194 field public static final int visibleToEphemeral = 16844095; // 0x101053f field public static final int vmSafeMode = 16843448; // 0x10102b8 field public static final int voiceIcon = 16843908; // 0x1010484 field public static final int voiceLanguage = 16843349; // 0x1010255 core/java/android/content/IntentFilter.java +22 −0 Original line number Diff line number Diff line Loading @@ -282,6 +282,10 @@ public class IntentFilter implements Parcelable { private int mVerifyState; /** Whether or not the intent filter is visible to ephemeral apps. */ private boolean mVisibleToEphemeral; /** Whether or not the intent filter is part of an ephemeral app. */ private boolean mEphemeral; // These functions are the start of more optimized code for managing // the string sets... not yet implemented. Loading Loading @@ -647,6 +651,24 @@ public class IntentFilter implements Parcelable { if (verified) mVerifyState |= STATE_VERIFIED; } /** @hide */ public void setVisibleToEphemeral(boolean visibleToEmphemeral) { mVisibleToEphemeral = visibleToEmphemeral; } /** @hide */ public boolean isVisibleToEphemeral() { return mVisibleToEphemeral; } /** @hide */ public void setEphemeral(boolean ephemeral) { mEphemeral = ephemeral; } /** @hide */ public boolean isEphemeral() { return mEphemeral; } /** * Add a new Intent action to match against. If any actions are included * in the filter, then an Intent's action must be one of those values for Loading core/java/android/content/pm/ActivityInfo.java +6 −0 Original line number Diff line number Diff line Loading @@ -362,6 +362,12 @@ public class ActivityInfo extends ComponentInfo */ public static final int FLAG_ON_TOP_LAUNCHER = 0x80000; /** * Bit in {@link #flags} indicating if the activity is visible to ephemeral applications. * @hide */ public static final int FLAG_VISIBLE_TO_EPHEMERAL = 0x100000; /** * @hide Bit in {@link #flags}: If set, this component will only be seen * by the system user. Only works with broadcast receivers. Set from the Loading Loading
api/current.txt +1 −0 Original line number Diff line number Diff line Loading @@ -1425,6 +1425,7 @@ package android { field public static final int viewportWidth = 16843778; // 0x1010402 field public static final int visibility = 16842972; // 0x10100dc field public static final int visible = 16843156; // 0x1010194 field public static final int visibleToEphemeral = 16844095; // 0x101053f field public static final int vmSafeMode = 16843448; // 0x10102b8 field public static final int voiceIcon = 16843908; // 0x1010484 field public static final int voiceLanguage = 16843349; // 0x1010255
api/system-current.txt +1 −0 Original line number Diff line number Diff line Loading @@ -1536,6 +1536,7 @@ package android { field public static final int viewportWidth = 16843778; // 0x1010402 field public static final int visibility = 16842972; // 0x10100dc field public static final int visible = 16843156; // 0x1010194 field public static final int visibleToEphemeral = 16844095; // 0x101053f field public static final int vmSafeMode = 16843448; // 0x10102b8 field public static final int voiceIcon = 16843908; // 0x1010484 field public static final int voiceLanguage = 16843349; // 0x1010255
api/test-current.txt +1 −0 Original line number Diff line number Diff line Loading @@ -1425,6 +1425,7 @@ package android { field public static final int viewportWidth = 16843778; // 0x1010402 field public static final int visibility = 16842972; // 0x10100dc field public static final int visible = 16843156; // 0x1010194 field public static final int visibleToEphemeral = 16844095; // 0x101053f field public static final int vmSafeMode = 16843448; // 0x10102b8 field public static final int voiceIcon = 16843908; // 0x1010484 field public static final int voiceLanguage = 16843349; // 0x1010255
core/java/android/content/IntentFilter.java +22 −0 Original line number Diff line number Diff line Loading @@ -282,6 +282,10 @@ public class IntentFilter implements Parcelable { private int mVerifyState; /** Whether or not the intent filter is visible to ephemeral apps. */ private boolean mVisibleToEphemeral; /** Whether or not the intent filter is part of an ephemeral app. */ private boolean mEphemeral; // These functions are the start of more optimized code for managing // the string sets... not yet implemented. Loading Loading @@ -647,6 +651,24 @@ public class IntentFilter implements Parcelable { if (verified) mVerifyState |= STATE_VERIFIED; } /** @hide */ public void setVisibleToEphemeral(boolean visibleToEmphemeral) { mVisibleToEphemeral = visibleToEmphemeral; } /** @hide */ public boolean isVisibleToEphemeral() { return mVisibleToEphemeral; } /** @hide */ public void setEphemeral(boolean ephemeral) { mEphemeral = ephemeral; } /** @hide */ public boolean isEphemeral() { return mEphemeral; } /** * Add a new Intent action to match against. If any actions are included * in the filter, then an Intent's action must be one of those values for Loading
core/java/android/content/pm/ActivityInfo.java +6 −0 Original line number Diff line number Diff line Loading @@ -362,6 +362,12 @@ public class ActivityInfo extends ComponentInfo */ public static final int FLAG_ON_TOP_LAUNCHER = 0x80000; /** * Bit in {@link #flags} indicating if the activity is visible to ephemeral applications. * @hide */ public static final int FLAG_VISIBLE_TO_EPHEMERAL = 0x100000; /** * @hide Bit in {@link #flags}: If set, this component will only be seen * by the system user. Only works with broadcast receivers. Set from the Loading