diff options
author | Alan Viverette <alanv@google.com> | 2015-04-30 15:53:11 -0700 |
---|---|---|
committer | Alan Viverette <alanv@google.com> | 2015-04-30 15:53:11 -0700 |
commit | 80ebe0d4ecb36d0e82dce499ccc0810cf3a0ec89 (patch) | |
tree | e1e507a704640e6e0c53526e4e7ea424e51bb4ca /api | |
parent | 7dc7d09ba5abdc99eb5f106cf3ce545355d4c9be (diff) | |
download | frameworks_base-80ebe0d4ecb36d0e82dce499ccc0810cf3a0ec89.zip frameworks_base-80ebe0d4ecb36d0e82dce499ccc0810cf3a0ec89.tar.gz frameworks_base-80ebe0d4ecb36d0e82dce499ccc0810cf3a0ec89.tar.bz2 |
ListPopupWindow should use window layout type SUB_PANEL
Look down, back up, where are you? You're in a dialog with an
AutoCompleteTextView. What's on your screen? I have it, it's the
auto-completion results you could be seeing. Look again. The window
layout type is now TYPE_APPLICATION_SUB_PANEL and the auto-completion
results are visible.
Also adds API on ListPopupWindow to specify the window layout type
and changes the text editing handle to be type ABOVE_SUB_PANEL.
Bug: 18530738
Change-Id: Id5577c4892729920de5b73411e580e6b2b2401d0
Diffstat (limited to 'api')
-rw-r--r-- | api/current.txt | 1 | ||||
-rw-r--r-- | api/system-current.txt | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/api/current.txt b/api/current.txt index be01112..01ca77a 100644 --- a/api/current.txt +++ b/api/current.txt @@ -40635,6 +40635,7 @@ package android.widget { method public void setSoftInputMode(int); method public void setVerticalOffset(int); method public void setWidth(int); + method public void setWindowLayoutType(int); method public void show(); field public static final int INPUT_METHOD_FROM_FOCUSABLE = 0; // 0x0 field public static final int INPUT_METHOD_NEEDED = 1; // 0x1 diff --git a/api/system-current.txt b/api/system-current.txt index c4f96af..212b5e8 100644 --- a/api/system-current.txt +++ b/api/system-current.txt @@ -43156,6 +43156,7 @@ package android.widget { method public void setSoftInputMode(int); method public void setVerticalOffset(int); method public void setWidth(int); + method public void setWindowLayoutType(int); method public void show(); field public static final int INPUT_METHOD_FROM_FOCUSABLE = 0; // 0x0 field public static final int INPUT_METHOD_NEEDED = 1; // 0x1 |