Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What's the difference between android.app.default_searchable and android.app.searchable meta-data?

I'm pretty new to Android and I need a search widget to get suggestions from my own dictionary. I realized some tutorials use android.app.default_searchable meta-data and others the android.app.searchable. I can't find the difference explained though.

like image 444
Dpedrinha Avatar asked Oct 07 '13 19:10

Dpedrinha


1 Answers

The difference is that android.app.default_searchable is used to declare which searchable activity to use for searches, the activity has enabled the search dialog. While the user is in this activity and when the user executes the search, the system starts SearchableActivity and delivers it the ACTION_SEARCH intent.
By instance if you want to show the search dialog and deliver searches to other activity, you must declare in the manifest that activity1 targeted as android.app.searchable is the searchable activity to use for the search dialog in activity2 targeted as android.app.default_searchable.

like image 141
Jans Avatar answered Oct 19 '22 06:10

Jans