META_ALT_LEFT_ON This mask is used to check whether the left ALT meta key is pressed. 16 META_ALT_MASK This mask is a combination of META_ALT_ON, META_ALT_LEFT_ON and META_ALT_RIGHT_ON. 50 META_ALT_ON This mask is used to check whether one of the ALT meta keys is pressed. 2 META_ALT_RIGHT_ON This mask is used to check whether the right the ALT meta key is pressed. 32 META_CAPS_LOCK_ON This mask is used to check whether the CAPS LOCK meta key is on. 1048576 META_CTRL_LEFT_ON This mask is used to check whether the left CTRL meta key is pressed. 8192 META_CTRL_MASK This mask is a combination of META_CTRL_ON, META_CTRL_LEFT_ON and META_CTRL_RIGHT_ON. 28672 META_CTRL_ON Th
local function getScreenPhysicalSize(ctx) local dm = DisplayMetrics() ctx.getWindowManager().getDefaultDisplay().getMetrics(dm) return Math.sqrt(Math.pow(dm.widthPixels, 2) + Math.pow(dm.heightPixels, 2)) / (160 * dm.density); end
获取设备id
举报 0