4

我想通过一个 Intent 启动 GoogleNow 并添加一个搜索查询作为额外的 (putExtra()),它应该在 GoogleNow 搜索引擎中执行。

到现在我只用过:

Intent intent = new Intent(Intent.ACTION_ASSIST);       
startActivity(intent);

这只会导致 GoogleNow 打开 - 但如何添加搜索字符串?

4

2 回答 2

2

所以这些都不是官方的,但您可以使用如下查询启动 Google Now:

    final Intent intent = new Intent(Intent.ACTION_WEB_SEARCH);
    intent.setPackage("com.google.android.googlequicksearchbox");
    intent.putExtra(SearchManager.QUERY, "Your query");
    startActivity(intent);
于 2014-03-06T17:23:06.257 回答
2

根据 Launcher3 源代码,我发现启动器执行类似于我下面的代码的操作来打开 Google 搜索:

public static boolean openSearch(Context context) {

        android.app.SearchManager searchManager = (android.app.SearchManager) context.getSystemService(Context.SEARCH_SERVICE);
        ComponentName globalSearchActivity = searchManager.getGlobalSearchActivity();
        if (globalSearchActivity == null) {
            Timber.w("No global search activity found.");
            return false;
        }
        Intent intent = new Intent(android.app.SearchManager.INTENT_ACTION_GLOBAL_SEARCH);
        intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
        intent.setComponent(globalSearchActivity);
        Bundle appSearchData = new Bundle();
        appSearchData.putString("source", getPackageName());

        intent.putExtra(android.app.SearchManager.APP_DATA, appSearchData);
        intent.putExtra(android.app.SearchManager.QUERY, "");
        intent.putExtra(android.app.SearchManager.EXTRA_SELECT_QUERY, true);
        try {
            context.startActivity(intent);
            return true;
        } catch (ActivityNotFoundException ex) {
            Timber.w("Global search activity not found: %s", globalSearchActivity);
            return false;
        }

    }

这也具有打开最近搜索历史的优势。

于 2016-04-28T18:11:40.590 回答