是否有标准的方法来检查Android设备中是否可以录音?
答案 0 :(得分:0)
如果您绝对需要设备来配置麦克风,请在清单中添加<uses-feature>
元素,要求android.hardware.microphone
。
如果您可以使用麦克风(如果存在),请在清单中添加<uses-feature>
元素,要求android.hardware.microphone
使用android:required="false"
。然后,使用PackageManager
和hasSystemFeature()
在运行时检查android.hardware.microphone
。