我可以检查API中的选项高于Api 17但是找不到Android 4.0.3的Api 15
如何找到用于检查Android API 15的开发者选项的解决方案?
您可以执行以下操作以编程方式检查开发人员选项是否已启用:
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.
希望这可以帮助.