我正在使用Android SearchRecentSuggestionsProvider和Searchable Configuration來顯示先前的應用搜索,並且希望將建議的響應限制爲僅返回以?開頭的輸入。 (用戶正在輸入)Android搜索推薦選擇啓用查詢開頭,而不是包含搜索
目前「P」返回手機,iPod音樂,照片,快樂,和我後只是電話和照片
東西eqlivent到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 '%'?"
您是否嘗試過'android:searchSuggestSelection =「單詞樣?」',或者'android:searchSuggestSelection =「單詞LIKE'?'」'? – Eric 2012-08-10 19:49:41
嗨埃裏克,不幸的不是:( – scottyab 2012-08-13 09:57:33