Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当 ADB 在 Android 手机上通过 USB 侦听时,是否可以让应用程序检测到?
我正在寻找这样的东西:是否可以确定 Android 设备是插入计算机还是只是电源?但专门用于 ADB 运行时。
谢谢!
Settings.Global.getInt(context.getContentResolver(), Settings.Global.ADB_ENABLED, 0);
如果手机上启用了 USB 调试,则返回 1,否则返回 0。