7

特定の Spotify プレイリストを再生したいのですが、利用可能な Spotify インテント フィルターがあるかどうかは誰にもわかりません。

ありがとう!

4

1 に答える 1

4

通常の意図で機能するはずです。

String spotifyUri = "spotify:user:...";
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(spotifyUri));
startActivity(intent);
于 2011-03-23T14:30:12.790 に答える