Есть ли что-то похожее на приведенные ниже поисковые запросы 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);