Difference Between Search Dialog and Android Search Widget

I want to know the difference between Search Dialog and Search Widget in Android. I know how to implement each of them with code, but I don’t know the differences in terms of attitudes, behavior, etc. Any help would be greatly appreciated.

+4
source share
2 answers

The basics of the section on how to create a search interface in Android docs explain this very well.

http://developer.android.com/guide/topics/search/search-dialog.html

+3
source

The search dialog is a user interface component that is controlled by the Android system. When activated by the user, a search dialog box appears at the top of the action.

A search widget is an instance of SearchView that can be placed anywhere in your layout. By default, the search widget behaves like a standard EditText widget and does nothing, but you can configure it so that the Android system processes all input events, delivers requests for the appropriate action and provides search suggestions.

+2
source

All Articles