andoid检测设备是否开启USB调试模式

/**
 * @author James
 * @Description 是否是usb调试模式
 * @return true 开启调试,false 未开启调试
 */
public static boolean usbStatus(Context mContext) {
    boolean enableAdb = (Settings.Secure.getInt(
            mContext.getContentResolver(), Settings.Secure.ADB_ENABLED, 0) > 0);
    return enableAdb;
}

你可能感兴趣的:(android移动开发)