diff options
| author | Jeff Brown <jeffbrown@google.com> | 2010-12-14 13:31:40 -0800 |
|---|---|---|
| committer | Jeff Brown <jeffbrown@google.com> | 2010-12-14 13:56:58 -0800 |
| commit | 2e976df64426c3ffd35f72233f77d5e638e2b595 (patch) | |
| tree | e08ef6bc7ab951a2f46b1ccf4860e7240bffb53a /core/java/android/widget/PopupWindow.java | |
| parent | ebd747ffade9bb79077e8474a9c4cb6d9294fe0b (diff) | |
Expose split touch API on PopupWindow.
Already exposed the new window flags and layout parameters,
just forgot to make this API visible at the same time.
Bug: 3049580
Change-Id: If8dc3568eb2806fa21881c31b9f879d6045ca890
Diffstat (limited to 'core/java/android/widget/PopupWindow.java')
| -rw-r--r-- | core/java/android/widget/PopupWindow.java | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/core/java/android/widget/PopupWindow.java b/core/java/android/widget/PopupWindow.java index 0f61cd4b59fe..591a2d47d28d 100644 --- a/core/java/android/widget/PopupWindow.java +++ b/core/java/android/widget/PopupWindow.java @@ -600,7 +600,6 @@ public class PopupWindow { * @return true if the touch splitting is enabled, false otherwise * * @see #setSplitTouchEnabled(boolean) - * @hide */ public boolean isSplitTouchEnabled() { if (mSplitTouchEnabled < 0 && mContext != null) { @@ -621,7 +620,6 @@ public class PopupWindow { * * @param enabled true if the split touches should be enabled, false otherwise * @see #isSplitTouchEnabled() - * @hide */ public void setSplitTouchEnabled(boolean enabled) { mSplitTouchEnabled = enabled ? 1 : 0; |
