我可以检查API中的选项高于Api 17,但无法找到Android 4.0.3的Api 15
如何找到检查Android API 15的开发者选项的解决方案?
答案 0 :(得分:5)
您可以执行以下操作以编程方式检查开发人员选项是否已启用:
int adb = Settings.Secure.getInt(this.getContentResolver(),
Settings.Global.DEVELOPMENT_SETTINGS_ENABLED , 0);
<强>更新强>
对于API小于API 17,您可以使用以下内容来判断ADB是否已启用。
int adb = Settings.Secure.getInt(context.getContentResolver(), Settings.Secure.ADB_ENABLED, 0);
如果已启用,则adb == 1,否则adb == 0。
希望这有帮助。