Android:当ADB通过USB激活时检测

时间:2013-05-24 18:52:54

标签: android adb

当ADB在Android手机上通过USB监听时,是否可以检测到应用程序?

我正在寻找类似这样的事情:Is it possible to determine whether an Android device is plugged into a computer or just power?但特别是在ADB运行时。

谢谢!

1 个答案:

答案 0 :(得分:1)

Settings.Global.getInt(context.getContentResolver(), Settings.Global.ADB_ENABLED, 0);

如果手机启用了USB调试,则返回1,如果不是,则返回0。