-3
我想在android中播放ogg文件。我無法在互聯網上找到關於此字段的任何有用文檔。我怎樣才能做到這一點?以編程方式在android中播放ogg文件
我想在android中播放ogg文件。我無法在互聯網上找到關於此字段的任何有用文檔。我怎樣才能做到這一點?以編程方式在android中播放ogg文件
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();
}
}