We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 863fbd4 commit 0bb2435Copy full SHA for 0bb2435
samples/fragments/src/com/actionbarsherlock/sample/fragments/LoaderCursorSupport.java
@@ -97,7 +97,8 @@ public static class CursorLoaderListFragment extends SherlockListFragment
97
MenuItem item = menu.add("Search");
98
item.setIcon(android.R.drawable.ic_menu_search);
99
item.setShowAsAction(MenuItem.SHOW_AS_ACTION_ALWAYS);
100
- View searchView = SearchViewCompat.newSearchView(getActivity());
+ SherlockFragmentActivity activity = (SherlockFragmentActivity)getActivity();
101
+ View searchView = SearchViewCompat.newSearchView(activity.getSupportActionBar().getThemedContext());
102
if (searchView != null) {
103
SearchViewCompat.setOnQueryTextListener(searchView,
104
new OnQueryTextListenerCompat() {
0 commit comments