diff options
| author | 2019-05-15 13:42:34 -0700 | |
|---|---|---|
| committer | 2019-05-15 13:42:34 -0700 | |
| commit | 164aa62fb2d6c81c5433ded23fb629ab14bcc32b (patch) | |
| tree | 89963959db620607eb3b47b7a6f42b90106d72cd | |
| parent | 563abce4ed0a0d9f08f8839a8f15b548b3dcd4d1 (diff) | |
| parent | 028b649f71056ad6fee8bf353cb97f292c25144a (diff) | |
Merge "Revert "Revert "Removing deprecated APIs added to Q""" into qt-dev
am: 028b649f71
Change-Id: Ifa06fa782c807fe282f38b028f33dbb481c0ddcc
| -rw-r--r-- | api/current.txt | 4 | ||||
| -rw-r--r-- | api/removed.txt | 7 | ||||
| -rw-r--r-- | core/java/android/widget/PopupWindow.java | 4 |
3 files changed, 11 insertions, 4 deletions
diff --git a/api/current.txt b/api/current.txt index 44a269273c41..7a2d966cb506 100644 --- a/api/current.txt +++ b/api/current.txt @@ -56254,12 +56254,10 @@ package android.widget { method public int getWindowLayoutType(); method public boolean isAboveAnchor(); method public boolean isAttachedInDecor(); - method @Deprecated public boolean isClipToScreenEnabled(); method public boolean isClippedToScreen(); method public boolean isClippingEnabled(); method public boolean isFocusable(); method public boolean isLaidOutInScreen(); - method @Deprecated public boolean isLayoutInScreenEnabled(); method public boolean isOutsideTouchable(); method public boolean isShowing(); method public boolean isSplitTouchEnabled(); @@ -56268,7 +56266,6 @@ package android.widget { method public void setAnimationStyle(int); method public void setAttachedInDecor(boolean); method public void setBackgroundDrawable(android.graphics.drawable.Drawable); - method @Deprecated public void setClipToScreenEnabled(boolean); method public void setClippingEnabled(boolean); method public void setContentView(android.view.View); method public void setElevation(float); @@ -56281,7 +56278,6 @@ package android.widget { method public void setInputMethodMode(int); method public void setIsClippedToScreen(boolean); method public void setIsLaidOutInScreen(boolean); - method @Deprecated public void setLayoutInScreenEnabled(boolean); method public void setOnDismissListener(android.widget.PopupWindow.OnDismissListener); method public void setOutsideTouchable(boolean); method public void setOverlapAnchor(boolean); diff --git a/api/removed.txt b/api/removed.txt index 72cb92c21adf..7713070e4489 100644 --- a/api/removed.txt +++ b/api/removed.txt @@ -699,6 +699,13 @@ package android.widget { method protected <T extends android.view.View> T findViewWithTagTraversal(Object); } + public class PopupWindow { + method @Deprecated public boolean isClipToScreenEnabled(); + method @Deprecated public boolean isLayoutInScreenEnabled(); + method @Deprecated public void setClipToScreenEnabled(boolean); + method @Deprecated public void setLayoutInScreenEnabled(boolean); + } + @android.widget.RemoteViews.RemoteView public class TextView extends android.view.View implements android.view.ViewTreeObserver.OnPreDrawListener { method public static int getTextColor(android.content.Context, android.content.res.TypedArray, int); method public static android.content.res.ColorStateList getTextColors(android.content.Context, android.content.res.TypedArray); diff --git a/core/java/android/widget/PopupWindow.java b/core/java/android/widget/PopupWindow.java index 20fc0b1a9f0b..3779779e9f21 100644 --- a/core/java/android/widget/PopupWindow.java +++ b/core/java/android/widget/PopupWindow.java @@ -887,6 +887,7 @@ public class PopupWindow { * * @return true if popup will be clipped to the screen instead of the window, false otherwise * @deprecated Use {@link #isClippedToScreen()} instead + * @removed */ @Deprecated public boolean isClipToScreenEnabled() { @@ -901,6 +902,7 @@ public class PopupWindow { * the {@link #update()} methods.</p> * * @deprecated Use {@link #setIsClippedToScreen(boolean)} instead + * @removed */ @Deprecated public void setClipToScreenEnabled(boolean enabled) { @@ -988,6 +990,7 @@ public class PopupWindow { * @return true if the window will always be positioned in screen coordinates. * * @deprecated Use {@link #isLaidOutInScreen()} instead + * @removed */ @Deprecated public boolean isLayoutInScreenEnabled() { @@ -1001,6 +1004,7 @@ public class PopupWindow { * * @param enabled true if the popup should always be positioned in screen coordinates * @deprecated Use {@link #setIsLaidOutInScreen(boolean)} instead + * @removed */ @Deprecated public void setLayoutInScreenEnabled(boolean enabled) { |