使用从意图传递的字符串填充Google Play音乐搜索栏

时间:2017-07-12 18:54:39

标签: android android-intent

我无法将意图中传递的字符串插入到Google音乐应用的搜索栏中。 以下代码允许我从我的应用中打开Goog​​le Play音乐,但将搜索栏留空。 有人知道如何使用传入的字符串填充Google Play音乐的搜索栏吗?任何帮助将不胜感激。

Intent intent = getActivity().getPackageManager().getLaunchIntentForPackage("com.google.android.music");
intent.putExtra(song ,"song to be inserted in google play searchbar");
startActivity(intent);

1 个答案:

答案 0 :(得分:0)

由于以下documentation,我已经弄明白了
在此示例中,我打开Goog​​le Play商店,然后输入search?q=drake&c=music"));作为URI的一部分,转到音乐标签页并搜索drake

Intent i = new Intent(android.content.Intent.ACTION_VIEW);
                    i.setData(Uri.parse("http://play.google.com/store/search?q=drake&c=music"));

                    startActivity(i);