如何检查Android 4.0.3 for API 15上是否启用了Developer选项

时间:2017-01-19 06:00:52

标签: java android api

我可以检查API中的选项高于Api 17,但无法找到Android 4.0.3的Api 15

如何找到检查Android API 15的开发者选项的解决方案?

1 个答案:

答案 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。

希望这有帮助。