I have implemented Appcompat V7 Search Widget successfully. while Debugging app on phone it shows no problem.(on many phones I tried) But when I export signed application. after installing and opening that activity crashes. Showing error in OnCreateOptionsMenu() method at Search Widget
here is menu
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<item android:id="@+id/group_search_box"
android:title="@string/search_label"
android:icon="@drawable/ic_action_action_search"
app:showAsAction="ifRoom|collapseActionView"
app:actionViewClass="android.support.v7.widget.SearchView" />
And here is how it is implemented.
SearchManager searchManager = (SearchManager)
getActivity().getSystemService(Context.SEARCH_SERVICE);
MenuItem searchMenuItem = menu.findItem(R.id.group_search_box);
SearchView searchView = (SearchView) searchMenuItem.getActionView();
searchView.setSearchableInfo(searchManager.getSearchableInfo(getActivity().getComponentName()));
This was working properly on all phones while debugging but after building apk it is not working.
I think this happens because of proguard. how can I fix this bug?
In menu.xml file in search item just changed android:actionViewClass="android.support.v7.widget.SearchView" to app:actionViewClass="android.support.v7.widget.SearchView" and the code workes fine, now search item looks like this: