TelephonyManager类使用方法集合
来源:IT的点点滴滴 责任编辑:栏目编辑 发表时间:2013-07-01 18:08 点击:次
使用TelephonyManager类可以得到很多关于手机的信息
- import android.app.Activity;
- import android.os.Bundle;
- import android.telephony.CellLocation;
- import android.telephony.PhoneStateListener;
- import android.telephony.TelephonyManager;
- public class TelManager extends Activity {
- @Override
- protected void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- TelephonyManager tm = (TelephonyManager) this.getSystemService(TELEPHONY_SERVICE);
- /*
- * 电话状态:
- * 1.tm.CALL_STATE_IDLE=0 无活动
- * 2.tm.CALL_STATE_RINGING=1 响铃
- * 3.tm.CALL_STATE_OFFHOOK=2 摘机
- */
- tm.getCallState();//int
- /*
- * 电话方位:
- *
- */
- tm.getCellLocation();//CellLocation
- /*
- * 唯一的设备ID:
- * GSM手机的 IMEI 和 CDMA手机的 MEID.
- * Return null if device ID is not available.
- */
- tm.getDeviceId();//String
- /*
- * 设备的软件版本号:
- * 例如:the IMEI/SV(software version) for GSM phones.
- * Return null if the softwa
相关新闻>>
最新推荐更多>>>
- 发表评论
-
- 最新评论 更多>>