AndroidSearchRecentSuggestionsProviderとSearchableConfigurationを使用して、以前のアプリ検索を表示していますが、提案された応答を、?で始まるエントリのみを返すように制限したいと思います。(ユーザーが入力しているもの)
現在、「p」は電話、iPod、写真、ハッピーを返します。私が求めているのは電話と写真だけです。
%のようなSQLに似たものがありますが、それを機能させることができないようです。
<searchable xmlns:android="http://schemas.android.com/apk/res/android"
android:hint="@string/product_search_hint"
android:imeOptions="actionSearch"
android:label="@string/app_label"
android:searchSuggestAuthority="com.myapp.ProductSearchSuggestionProvider"
android:searchSuggestSelection="word MATCH ?" >
</searchable>
試した:
android:searchSuggestSelection="WORD LIKE '%'?"