某些手机​​无法播放音频文件

时间:2016-11-26 06:04:48

标签: java android audio-player

我试图在手机上播放录制的文件。它可以在联想4.2和Oppo 5.0中运行,但是它会出现错误,并且无法播放音轨"在Moto E 5.0和Samsung SM-N915G 6.0

    Intent intent = new Intent();
    intent.setAction(android.content.Intent.ACTION_VIEW);
    File file = new File(Environment.getExternalStorageDirectory().getAbsolutePath() + "/PhoneCallRecording/" + callNumber.get(position).getDate() + ".amr");
    intent.setDataAndType(Uri.fromFile(file), "audio/*");
    context.startActivity(intent);

0 个答案:

没有答案
相关问题