Mr_老冷 发表于 2022-12-5 16:38:18

【EasyClick】【安卓】获取设备网络类型

返回值:WIFI/MOBILE/null


function getNetworkType() {
    let connectivityManager = context.getApplicationContext()
      .getSystemService(context.CONNECTIVITY_SERVICE)
    if (!connectivityManager) return false
    let info = connectivityManager.getActiveNetworkInfo()
    if (!info) return null
    let type = info.getType()
    if (type === 1) {
      return "WIFI"
    } else if (type === 0) {
      return "MOBILE"
    }
    return type
}


550902692 发表于 2023-2-11 04:31:22

无敌超级美少女战士

slj2121 发表于 2023-9-17 01:38:53

111111111111111111111111
页: [1]
查看完整版本: 【EasyClick】【安卓】获取设备网络类型