문제

I have some Android code that lets a user choose a song on their device:

        Intent intent = new Intent();
        intent.setAction(Intent.ACTION_PICK);
        intent.setData(MediaStore.Audio.Media.EXTERNAL_CONTENT_URI);

        startActivityForResult(intent, 0);

This works fine on most Android devices, but not the Kindle Fire. On Kindle, the activity is not available. Is there another activity to try? Or does Kindle simply not allow these requests?

도움이 되었습니까?

해결책

On Kindle, the activity is not available.

You are requesting audio. The Kindle Fire HD does not ship with an audio playing app, so there is nothing that could handle that Intent. MediaStore.Video.Media.EXTERNAL_CONTENT_URI works, routing you to the "Personal Videos" app.

Is there another activity to try?

It would have to be something supported by some third-party app.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top