I\'m trying to create my first Android app and in the process of adding to it SEARCH functionality. I\'ve followed the Android Developer documentation to add both the Search dia
Try to remove super.OnNewIntent(intent) in your SearchableActivity.
According to your manifest you are trying to use search dialog
and in the same time you use SearchView in your Menu. If you use SearchView you should use
like in http://developer.android.com/guide/topics/search/searchable-config.html.
That is my example of xml/searchable.xml: