diff --git a/build/sdk.atree b/build/sdk.atree index 3c92d083c..d06ca34b0 100644 --- a/build/sdk.atree +++ b/build/sdk.atree @@ -97,7 +97,7 @@ development/samples/SkeletonApp samples/${PLATFORM_NAME}/SkeletonAp development/samples/Snake samples/${PLATFORM_NAME}/Snake development/samples/SoftKeyboard samples/${PLATFORM_NAME}/SoftKeyboard development/samples/JetBoy samples/${PLATFORM_NAME}/JetBoy -development/samples/SearchableDictionary samples/${PLATFORM_NAME}/SearchableDictionary +development/samples/SearchableDictionary samples/${PLATFORM_NAME}/SearchableDictionaryV2 development/samples/ContactManager samples/${PLATFORM_NAME}/ContactManager development/samples/MultiResolution samples/${PLATFORM_NAME}/MultiResolution development/samples/Wiktionary samples/${PLATFORM_NAME}/Wiktionary diff --git a/samples/SearchableDictionary/_index.html b/samples/SearchableDictionary/_index.html index 6f9d99762..4f753e65b 100644 --- a/samples/SearchableDictionary/_index.html +++ b/samples/SearchableDictionary/_index.html @@ -4,22 +4,19 @@ app (via the device search button or Menu > Search), you can perform a search across the dictionary. As you type, suggestions will appear, which you can select to view the complete definition. You can also execute the search to view all word definitions -that match the entered text.
- -The application also grants content provider privileges to -Quick Search Box, Android's system-wide search tool. This means that the -dictionary definitions can be offered as search suggestions outside of the application, -when text is entered into Quick Search Box.
+that match the entered text. The application also allows Quick Search Box (Android's system-wide +search) to provide dictionary suggestions.The code in this application demonstrates how to:
SimpleCursorAdapter to
+bind data from a Cursor to a ListView.See also:
@@ -27,6 +24,11 @@ data from a Cursor to a ListView.Note: For the original version of Searchable Dictionary, which
+reads words from a file instead of a database and uses a custom BaseAdapter, see the SDK
+samples included with the platforms for API Level 4-6.
-
\ No newline at end of file
+