Android:以编程方式播放相机快门声

时间:2012-10-25 13:09:58

标签: android audio camera

我想以编程方式播放相机快门声。我没有使用自动播放声音的ShutterCallback,所以我需要以其他方式进行。有人知道解决方案吗?

2 个答案:

答案 0 :(得分:15)

来自API 16的

MediaActionSound

AudioManager audio = (AudioManager) getSystemService(Context.AUDIO_SERVICE);
    switch( audio.getRingerMode() ){
        case AudioManager.RINGER_MODE_NORMAL:
            MediaActionSound sound = new MediaActionSound();
            sound.play(MediaActionSound.SHUTTER_CLICK);
        break;
        case AudioManager.RINGER_MODE_SILENT:
        break;
        case AudioManager.RINGER_MODE_VIBRATE:
        break;
    }

在Android中尊重振动/静音模式。

答案 1 :(得分:7)

他的资源解释了如何播放音频文件

http://www.vogella.com/articles/AndroidMedia/article.html

您可能需要提供自己的快门音效。

如果系统文件在那里,您可以像这样使用它:

public void shootSound()
{
    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();
    }
}