diff options
author | Adam Powell <adamp@google.com> | 2012-08-30 17:30:05 -0700 |
---|---|---|
committer | Adam Powell <adamp@google.com> | 2012-08-30 17:46:11 -0700 |
commit | 780c491fb9905adb3782f34886bb23327ed8f456 (patch) | |
tree | 9b7375cbc9beb1de4374d0dc573d102c7ab17ecb /api | |
parent | f203aeef993b0f4ce65c9630d06bbd50a504e89f (diff) | |
download | frameworks_base-780c491fb9905adb3782f34886bb23327ed8f456.zip frameworks_base-780c491fb9905adb3782f34886bb23327ed8f456.tar.gz frameworks_base-780c491fb9905adb3782f34886bb23327ed8f456.tar.bz2 |
Add an OnDismissListener to AutoCompleteTextView
Bug 4551310
Change-Id: I702301ad3360828ec6637b6c09789e00d9661271
Diffstat (limited to 'api')
-rw-r--r-- | api/current.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/api/current.txt b/api/current.txt index 9e28451..9a7d912 100644 --- a/api/current.txt +++ b/api/current.txt @@ -27675,6 +27675,7 @@ package android.widget { method public void setDropDownVerticalOffset(int); method public void setDropDownWidth(int); method public void setListSelection(int); + method public void setOnDismissListener(android.widget.AutoCompleteTextView.OnDismissListener); method public void setOnItemClickListener(android.widget.AdapterView.OnItemClickListener); method public void setOnItemSelectedListener(android.widget.AdapterView.OnItemSelectedListener); method public void setText(java.lang.CharSequence, boolean); @@ -27683,6 +27684,10 @@ package android.widget { method public void showDropDown(); } + public static abstract interface AutoCompleteTextView.OnDismissListener { + method public abstract void onDismiss(); + } + public static abstract interface AutoCompleteTextView.Validator { method public abstract java.lang.CharSequence fixText(java.lang.CharSequence); method public abstract boolean isValid(java.lang.CharSequence); |