Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 Android 上,当您开始在应用中录制视频时,会发出通知声音。有没有可靠的方法来禁用它?
对于无根设备,如果固件允许静音,您可以在录制前使用AudioManager.setStreamMute()on STREAM_MUSIC(或STREAM_SYSTEM在某些设备上)将其静音,并在录制开始时取消静音。如果固件不允许这样做,它将无法工作。在这种情况下,除了生根之外,没有其他方法可以禁用它。
AudioManager.setStreamMute()
STREAM_MUSIC
STREAM_SYSTEM