TelephonyManager:

1. public String getDeviceSoftwareVersion() : software version number, ex: IMEI/SV for GSM phones

2. public StringgetDeviceId() : unique device ID, for example,the IMEI for GSM phones

3. public CellLocationgetCellLocation() : the current location of the device

4. public List<NeighboringCellInfo>getNeighboringCellInfo() : neighboring cell list info of the device

5. public int getPhoneType() : two types available:  PHONE_TYPE_NONEPHONE_TYPE_GSM

6. public StringgetNetworkOperatorName() : alphabetic name of current registered operator

7. public boolean isNetworkRoaming() : phone is roaming

8. public StringgetNetworkCountryIso() : ISO country code equivilent of the current registered operator's MCC (Mobile Country Code)

9. public int getNetworkType() : four types of network : NETWORK_TYPE_UNKNOWNNETWORK_TYPE_GPRSNETWORK_TYPE_EDGENETWORK_TYPE_UMTS

10. public String getNetworkTypeName() : "UNKNOWN", "GPRS", "EDGE", "UMTS"

11. public int getSimState() : SIM_STATE_UNKNOWNSIM_STATE_ABSENTSIM_STATE_PIN_REQUIREDSIM_STATE_PUK_REQUIREDSIM_STATE_NETWORK_LOCKEDSIM_STATE_READY

12. public String getSimOperator() : MCC+MNC (mobile country code + mobile network code) of the provider of the SIM. 5 or 6 decimal digits

13. public String getSimOperatorName() : Service Provider Name (SPN)

14. public String getSimCountryIso() : ISO country code equivalent for the SIM provider's country code

15. public String getSimSerialNumber() : serial number of the SIM

16. public StringgetSubscriberId() : unique subscriber ID, for example, the IMSI for a GSM phone

17. public String getLine1Number() : phone number string for line 1, for example, the MSISDN for a GSM phone

18. public String getLine1AlphaTag() : alphabetic identifier associated with the line 1 number

19. public String getVoiceMailNumber() : voice mail number

20. public String getVoiceMailAlphaTag() : alphabetic identifier associated with the voice mail number

21. public int getCallState() : CALL_STATE_IDLE , CALL_STATE_RINGING, CALL_STATE_OFFHOOK

22. public int getDataActivity() : DATA_ACTIVITY_NONEDATA_ACTIVITY_INDATA_ACTIVITY_OUTDATA_ACTIVITY_INOUT

23. public int getDataState() : DATA_DISCONNECTEDDATA_CONNECTINGDATA_CONNECTEDDATA_SUSPENDED

GsmCellLocation :

1. public int getLac()

2. public int getCid()

NeighboringCellInfo :

1. public int getRssi() : received signal strength in "asu", ranging from 0 - 31, or UNKNOWN_RSSI if unknown For GSM, dBm = -113 + 2*asu, 0 means "-113 dBm or less" and 31 means "-51 dBm or greater"

2. public int getCid() : cell id, UNKNOWN_CID if unknown, 0xffffffff max legal value

最新文章

  1. leancloud 手机注册用户(调用API) 教程
  2. iOS中的过期方法和新的替代方法
  3. mytbatis小问题
  4. 使用edtftpj-***.jar上传下载中文问题的解决方案和注意点
  5. hashcat
  6. 网站开发常用jQuery插件总结(六)关键词说明插件cluetip
  7. 〔写在OS边上〕定性note
  8. 临界段CCriticalSection的使用
  9. 简单入门使用GitHub总结
  10. JavaScript之onXXXX事件和addEventListener的区别
  11. winform中的 datagriview 字段自动填充长度
  12. Laplace(拉普拉斯)先验与L1正则化
  13. 对thinkphp的命名空间的理解
  14. 在kerberos认证过程中Active Directory的作用
  15. 深入浅出JAVA线程池使用原理1
  16. nginx转发
  17. android sdk 汉化
  18. 业界常用的和不常用cad快捷键
  19. Javascript-数据类型转换 、 运算符和表达式
  20. IntelliJ IDEA 快捷键积累

热门文章

  1. vue组件化开发实践
  2. 使用libcurl显示下载进度
  3. c# 之Web.config
  4. LUA全总结
  5. linux img文件 分区挂载
  6. jsp编译器指令errorPage的用法
  7. Spring Cloud Eureka高可用落地实战
  8. cluster DNS
  9. KEY操作续
  10. js中__proto__, property, prototype, 对象自身属性方法和原型中的属性方法的区别