Android支持库 - 工具栏中的SearchView不会调用onSearchRequested

时间:2014-11-18 10:08:08

标签: android android-appcompat material-design android-actionbar-compat

在使用Google支持库从Holo更改为Material期间,我发现了一个问题,似乎onSearchRequested没有调用Activity的回调。两个活动 - 开始搜索的活动(ProjectDetail)和搜索目标活动(ResultList)都在延伸android.support.v7.app.ActionBarActivity

搜索有效,但它永远不会达到onSearchRequested回调,因此我无法为搜索包设置其他参数。

有许多类似的问题,但到目前为止,没有一个解决方案适合我,所以我在这里问。我打了几个小时的战斗,也许我错过了一些非常明显的东西,因为绝望掩盖了我的视野:)非常好,请帮忙!

代码段Manifest

<application>
    <meta-data
        android:name="android.app.default_searchable"
        android:value=".ResultList" />

   <activity android:name="my.package.ProjectDetail">
        <meta-data
            android:name="android.app.default_searchable"
            android:value=".ResultList"/>
    </activity>

   <activity android:name="my.package.ResultList" >
        <intent-filter>
            <action android:name="android.intent.action.SEARCH" />
        </intent-filter>
        <intent-filter>
            <action android:name="com.google.android.gms.actions.SEARCH_ACTION" />
            <category android:name="android.intent.category.DEFAULT" />
        </intent-filter>

        <meta-data android:name="android.app.searchable" android:resource="@xml/searchable" />
    </activity>
</application>

这是在onCreateOptionsMenu的Activity中开始搜索:

getMenuInflater().inflate(R.menu.search, menu);

MenuItem searchItem = menu.findItem(R.id.menu_search);
SearchView searchView = (SearchView) MenuItemCompat.getActionView(searchItem);
SearchManager searchManager = (SearchManager) getSystemService(Context.SEARCH_SERVICE);

SearchableInfo info = searchManager.getSearchableInfo(getComponentName());

searchView.setSearchableInfo(info);
searchView.setIconifiedByDefault(true);
searchView.setQueryRefinementEnabled(true);
searchView.setQueryHint(getString(R.string.search_hint));

这是search.xml在前一个代码段中膨胀,包含MenuItem和ActionView:

<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<item android:id="@+id/menu_search"
      android:title="@string/m_search"
      android:icon="@android:drawable/ic_menu_search"
      app:showAsAction="ifRoom|collapseActionView"
      app:actionViewClass="android.support.v7.widget.SearchView" />
</menu>

这是onSearchRequested活动中的ProjectDetail回调:

@Override
public boolean onSearchRequested() {
        L.dd("SEARCH", "REQUESTED IN PROJECT");
        Bundle searchData = new Bundle();
        searchData.putLong(Const.EXTRA_PROJECT_ID, projectId);
        searchData.putLong(Const.EXTRA_ACCOUNT_ID, accountId);
        startSearch(null, false, searchData, false);
        return true;
}

最后,这是从Manifest引用的searchable.xml

<?xml version="1.0" encoding="utf-8"?>
<searchable xmlns:android="http://schemas.android.com/apk/res/android"
            android:label="@string/app_label"
            android:hint="@string/search_hint" 
            android:searchSuggestAuthority="my.package.provider.SearchSuggestionsProvider"
            android:searchSuggestSelection=" ?"
            android:includeInGlobalSearch="true"
/>

提前致谢。

1 个答案:

答案 0 :(得分:2)

我遇到了同样的问题。找到一个简单的解决方法here。 一般来说,您在搜索活动中覆盖方法startActivity,并在操作等于Intent.ACTION_SEARCH时将params置于intent:

@Override
public void startActivity(Intent intent) {      
    // check if search intent
    if (Intent.ACTION_SEARCH.equals(intent.getAction())) {
        intent.putExtra("KEY", "VALUE");
    }

    super.startActivity(intent);
}

然后在可搜索的活动中传递这样的参数:

private void handleIntent(Intent intent){
    if (Intent.ACTION_SEARCH.equals(intent.getAction())){
    mSearchedQuery = intent.getStringExtra(SearchManager.QUERY);
    mExtraData = intent.getStringExtra("KEY");
}