使用Android自带的播放器进行音频播放

huangapple 未分类评论48阅读模式
英文:

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:

&lt;android:name=&quot;android.permission.READ_EXTERNAL_STORAGE&quot;/&gt;

My code

button1.setOnClickListener {
           button1.setOnClickListener {

        val audioDirPath = File(getFilesDir(), &quot;Download&quot;)
        audioDirPath.mkdir()
        val file = File(audioDirPath, &quot;audionline.mp3&quot;)
        val contentUri = getUriForFile(this, &quot;com.example.fileprovider&quot;, 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)

huangapple
  • 本文由 发表于 2020年7月23日 19:37:18
  • 转载请务必保留本文链接:https://java.coder-hub.com/63053342.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定