ユーザーが自分のデバイスで曲を選択できるようにする Android コードがいくつかあります。
Intent intent = new Intent();
intent.setAction(Intent.ACTION_PICK);
intent.setData(MediaStore.Audio.Media.EXTERNAL_CONTENT_URI);
startActivityForResult(intent, 0);
これは、ほとんどの Android デバイスで正常に機能しますが、Kindle Fire では機能しません。Kindle では、アクティビティは利用できません。他に試すアクティビティはありますか?それとも、Kindle は単にこれらの要求を許可しないのでしょうか?