Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
すでに Web を検索しましたが、結果は見つかりませんでした。Android でインテントを使用して Deezer アプリで特定の曲を再生するにはどうすればよいですか? ( Deezerでもやりたいです) 。
「http://www.deezer.com/track/{id}」で ACTION_VIEW インテントを開始するだけです。
String uri = "http://www.deezer.com/track/" + trackId; Intent intent = new Intent(Intent.ACTION_VIEW, uri);