我想以编程方式播放相机快门声音。我没有使用自动播放该声音的 ShutterCallback,因此我需要以其他方式进行操作。有人知道解决方案吗?
问问题
10089 次
2 回答
23
来自 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 中的振动/静音模式。
于 2016-08-19T10:59:08.403 回答
8
他的资源解释了如何播放音频文件
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();
}
}
于 2012-10-25T13:58:54.837 回答