-1

Android アプリに検索ボックスを追加する必要があります。ユーザーが検索テキストを入力し始めたら、関連する候補を表示する必要があります。(ホーム画面の google-search ウィジェットに見られるように。ログから見ると、意図的に com.android.quicksearchbox/.SearchActivity開始され、次のように検索されます: .android.search.action.GLOBAL_SEARCHcorpora:[web, apps, com.android.contacts/.activities.PeopleActivity])

唯一のことは、Web とアプリケーション DB から提案を表示する必要があることです。

これを実装する方法はありますか?独自の実装が必要SuggestionsProviderですか、それともネイティブ実装を直接使用できますか? もしそうなら、どのように?

4

1 に答える 1

2

I think i figure it out myself.

Went through Searchable Dictionary code & QuickSearchBox code in android source.

Need two start 2 activities in a background thread. One will search for the search-term in my DB & other will search the same in Google. All the results will be seen in the suggestion list.

Google Suggest API provides suggestions as the user enters the text.

于 2012-08-13T14:04:40.617 に答える