英文:
Audio playback using Android's own player
问题
我想知道如何在按下按钮时启动 Android 自带的播放器,我已经尝试过,但当我按下按钮时应用程序被销毁。
这是我的 mp3 文件位置(内部存储 / Download / Audio.mp3)
另外,我在清单文件中添加了以下内容:
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
我的代码:
button1.setOnClickListener {
val audioDirPath = File(getFilesDir(), "Download")
audioDirPath.mkdir()
val file = File(audioDirPath, "audionline.mp3")
val contentUri = getUriForFile(this, "com.example.fileprovider", file)
val intent = Intent(Intent.ACTION_VIEW)
intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
startActivity(intent)
}
英文:
I would like to know how I can android's own player is activated at the time of pressing a button, I have tried but when I press the button the application is destroyed.
This is the location of my mp3 file (Internal Storage / Download / Audio.mp3)
alsoI have added this in the manifest:
<android:name="android.permission.READ_EXTERNAL_STORAGE"/>
My code
button1.setOnClickListener {
button1.setOnClickListener {
val audioDirPath = File(getFilesDir(), "Download")
audioDirPath.mkdir()
val file = File(audioDirPath, "audionline.mp3")
val contentUri = getUriForFile(this, "com.example.fileprovider", file)
val intent = Intent(Intent.ACTION_VIEW)
intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
startActivity(intent)
}
}
答案1
得分: 0
Intent intent = new Intent(Intent.ACTION_VIEW, uri);
intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
context.startActivity(intent)
英文:
Intent intent = new Intent(Intent.ACTION_VIEW, uri);
intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
context.startActivity(intent)
专注分享java语言的经验与见解,让所有开发者获益!
评论