以编程方式在Android中播放ogg文件

时间:2016-09-25 15:58:14

标签: android android-mediaplayer

我想在android中播放ogg文件。我在互联网上找不到任何关于这个领域的有用文档。我怎么能这样做?

1 个答案:

答案 0 :(得分:0)

public void playSound()
{
    AudioManager meng = (AudioManager) getContext().getSystemService(Context.AUDIO_SERVICE);
    int volume = meng.getStreamVolume( AudioManager.STREAM_NOTIFICATION);

    if (volume != 0)
    {
        if (_shootMP == null)
            _shootMP = MediaPlayer.create(getContext(), Uri.parse("file:///system/media/audio/ui/camera_click.ogg"));
        if (_shootMP != null)
            _shootMP.start();
    }
}