我试图在手机上播放录制的文件。它可以在联想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);