diff options
author | Romain Guy <romainguy@android.com> | 2009-09-30 11:36:01 -0700 |
---|---|---|
committer | Romain Guy <romainguy@android.com> | 2009-09-30 11:55:58 -0700 |
commit | aa1c6311d6d900261bcd9f3b0986b6c0394af07a (patch) | |
tree | ebda9c0ec287cc81e9e365de99be11425d93d831 /core/java/android/provider/LiveFolders.java | |
parent | 86aece8b4ad6d55cc9a3c185c3730d7387a46661 (diff) | |
download | frameworks_base-aa1c6311d6d900261bcd9f3b0986b6c0394af07a.zip frameworks_base-aa1c6311d6d900261bcd9f3b0986b6c0394af07a.tar.gz frameworks_base-aa1c6311d6d900261bcd9f3b0986b6c0394af07a.tar.bz2 |
Fix possible crash in AutoCompleteTextView.
This change makes sure that ACTV will not take action when an event is
received in a popup that just got dismissed.
This change also makes public two XML attributes of ACTV whose corresponding
Java APIs are public.
This change also fixes a couple of typos.
Change-Id: I78f113bc522d199ff3db44fc4cc3a1882afe822e
Diffstat (limited to 'core/java/android/provider/LiveFolders.java')
-rw-r--r-- | core/java/android/provider/LiveFolders.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/java/android/provider/LiveFolders.java b/core/java/android/provider/LiveFolders.java index 19f361b..66723f8 100644 --- a/core/java/android/provider/LiveFolders.java +++ b/core/java/android/provider/LiveFolders.java @@ -40,7 +40,7 @@ import android.annotation.SdkConstant; * to retrieve the folder's content.</p> * * <h3>Setting up the live folder activity</h3> - * <p>The following code sample shows how to write an activity that creates a live fodler:</p> + * <p>The following code sample shows how to write an activity that creates a live folder:</p> * <pre> * public static class MyLiveFolder extends Activity { * public static final Uri CONTENT_URI = Uri.parse("content://my.app/live"); |