有意图地在People Search中打开Flickr应用

时间:2018-11-18 17:49:01

标签: android android-intent

是否存在与下面的Spotify或Youtube搜索意图相似的东西?

                Intent spotifyIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("https://open.spotify.com/search/" + "username"));
                spotifyIntent.setPackage("com.spotify.music");
                startActivity(spotifyIntent);

                Intent intentYoutube = new Intent(Intent.ACTION_SEARCH);
                intentYoutube.setPackage("com.google.android.youtube");
                intentYoutube.putExtra(SearchManager.QUERY, "username");
                intentYoutube.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
                startActivity(intentYoutube);

0 个答案:

没有答案