系统信息

qq.getSystemInfoSync

Object qq.getSystemInfoSync()

qq.getSystemInfo 的同步版本

返回值

Object res
属性类型说明最低版本
brandstring设备品牌
modelstring设备型号
pixelRationumber设备像素比
screenWidthnumber屏幕宽度,单位dp
screenHeightnumber屏幕高度,单位dp
windowWidthnumber可使用窗口宽度,单位dp
windowHeightnumber可使用窗口高度,单位dp
statusBarHeightnumber状态栏的高度,单位dp
languagestringQQ设置的语言
versionstringQQ版本号
systemstring操作系统及版本
platformstring客户端平台
fontSizeSettingnumber用户字体大小(单位px)。以QQ客户端「我-设置-通用-字体大小」中的设置为准
SDKVersionstring客户端基础库版本
benchmarkLevelnumber设备性能等级(仅Android小游戏)。取值为:-2 或 0(该设备无法运行小游戏),-1(性能未知),>=1(设备性能值,该值越高,设备性能越好,目前最高不到50)
albumAuthorizedboolean允许QQ使用相册的开关(仅 iOS 有效)
cameraAuthorizedboolean允许QQ使用摄像头的开关
locationAuthorizedboolean允许QQ使用定位的开关
microphoneAuthorizedboolean允许QQ使用麦克风的开关
notificationAuthorizedboolean允许QQ通知的开关(仅 iOS 有效)
notificationAlertAuthorizedboolean允许QQ通知带有提醒的开关(仅 iOS 有效)
notificationBadgeAuthorizedboolean允许QQ通知带有标记的开关(仅 iOS 有效)
notificationSoundAuthorizedboolean允许QQ通知带有声音的开关(仅 iOS 有效)
bluetoothEnabledboolean蓝牙的系统开关
locationEnabledboolean地理位置的系统开关
wifiEnabledbooleanWi-Fi 的系统开关
navbarPositionobject右上角胶囊位置 (仅Android小游戏)
Object navbarPosition
属性类型说明
marginTopnumber距离屏幕顶部的距离 单位px
navbarHeightnumber胶囊的高度 单位px
marginRightnumber距离屏幕右侧的距离 单位px
navbarWidthnumber胶囊的宽度 单位px

示例代码

  1. qq.getSystemInfo({
  2. success(res) {
  3. console.log(res.model)
  4. console.log(res.pixelRatio)
  5. console.log(res.windowWidth)
  6. console.log(res.windowHeight)
  7. console.log(res.language)
  8. console.log(res.version)
  9. console.log(res.platform)
  10. }
  11. })
  1. try {
  2. const res = qq.getSystemInfoSync()
  3. console.log(res.model)
  4. console.log(res.pixelRatio)
  5. console.log(res.windowWidth)
  6. console.log(res.windowHeight)
  7. console.log(res.language)
  8. console.log(res.version)
  9. console.log(res.platform)
  10. } catch (e) {
  11. // Do something when catch error
  12. }

qq.getSystemInfo

qq.getSystemInfo(Object object)

获取系统信息

参数

Object object
属性类型默认值必填说明
successfunction接口调用成功的回调函数
failfunction接口调用失败的回调函数
completefunction接口调用结束的回调函数(调用成功、失败都会执行)
object.success 回调函数

参数

Object res

属性类型说明最低版本
brandstring设备品牌
modelstring设备型号
pixelRationumber设备像素比
screenWidthnumber屏幕宽度,单位dp
screenHeightnumber屏幕高度,单位dp
windowWidthnumber可使用窗口宽度,单位dp
windowHeightnumber可使用窗口高度,单位dp
statusBarHeightnumber状态栏的高度,单位dp
languagestringQQ设置的语言
versionstringQQ版本号
systemstring操作系统及版本
platformstring客户端平台
fontSizeSettingnumber用户字体大小(单位px)。以QQ客户端「我-设置-通用-字体大小」中的设置为准
SDKVersionstring客户端基础库版本
benchmarkLevelnumber设备性能等级(仅Android小游戏)。取值为:-2 或 0(该设备无法运行小游戏),-1(性能未知),>=1(设备性能值,该值越高,设备性能越好,目前最高不到50)
albumAuthorizedboolean允许QQ使用相册的开关(仅 iOS 有效)
cameraAuthorizedboolean允许QQ使用摄像头的开关
locationAuthorizedboolean允许QQ使用定位的开关
microphoneAuthorizedboolean允许QQ使用麦克风的开关
notificationAuthorizedboolean允许QQ通知的开关(仅 iOS 有效)
notificationAlertAuthorizedboolean允许QQ通知带有提醒的开关(仅 iOS 有效)
notificationBadgeAuthorizedboolean允许QQ通知带有标记的开关(仅 iOS 有效)
notificationSoundAuthorizedboolean允许QQ通知带有声音的开关(仅 iOS 有效)
bluetoothEnabledboolean蓝牙的系统开关
locationEnabledboolean地理位置的系统开关
wifiEnabledbooleanWi-Fi 的系统开关
navbarPositionobject右上角胶囊位置 (仅Android小游戏)
Object navbarPosition
属性类型说明
marginTopnumber距离屏幕顶部的距离 单位px
navbarHeightnumber胶囊的高度 单位px
marginRightnumber距离屏幕右侧的距离 单位px
navbarWidthnumber胶囊的宽度 单位px

示例代码

  1. qq.getSystemInfo({
  2. success(res) {
  3. console.log(res.model)
  4. console.log(res.pixelRatio)
  5. console.log(res.windowWidth)
  6. console.log(res.windowHeight)
  7. console.log(res.language)
  8. console.log(res.version)
  9. console.log(res.platform)
  10. }
  11. })
  1. try {
  2. const res = qq.getSystemInfoSync()
  3. console.log(res.model)
  4. console.log(res.pixelRatio)
  5. console.log(res.windowWidth)
  6. console.log(res.windowHeight)
  7. console.log(res.language)
  8. console.log(res.version)
  9. console.log(res.platform)
  10. } catch (e) {
  11. // Do something when catch error
  12. }