/**
* 判断移动网络是否开启
*
* @param context
* @return
*/
public static boolean isNetEnabled(Context context) {
TelephonyManager tm = (TelephonyManager) context
.getSystemService(Context.TELE...
分类:
移动开发 时间:
2014-10-19 11:35:58
阅读次数:
620
TelephonyManager这个类很有用,可以得到很多关于手机和Sim卡的信息。 直接上注释后的代码,请享用package net.sunniwell.app;import android.app.Activity;import android.os.Bundle;import android....
分类:
移动开发 时间:
2014-09-26 22:56:48
阅读次数:
183
加入权限: 1 package com.example.textphone; 2 3 import android.content.Context; 4 import android.telephony.TelephonyManager; 5 6 public class SIMCardInfo.....
分类:
移动开发 时间:
2014-09-17 14:50:32
阅读次数:
318
TelephonyManager类:管理手机通话状态,电话网络信息的服务类,获取方法为: TelephonyManager manager=(TelephonyManager)getSystemService(Context.TELEPHONY_SERVICE) 常用方法:listen(PhoneS...
分类:
移动开发 时间:
2014-09-12 23:15:34
阅读次数:
234
添加权限main.xml PhoneUtils.java是手机功能类,从TelephonyManager中实例化ITelephony并返回,源码如下:package com.testTelephony;...
分类:
移动开发 时间:
2014-09-09 10:35:28
阅读次数:
284
TelephonyManager tm = (TelephonyManager)context.getSystemService(Context.TELEPHONY_SERVICE); String imei = tm.getDeviceId(); String tel = tm.g...
分类:
移动开发 时间:
2014-09-04 14:35:49
阅读次数:
272
添加权限main.xml PhoneUtils.java是手机功能类,从TelephonyManager中实例化ITelephony并返回,源码如下:package com.testTelephony;...
分类:
移动开发 时间:
2014-09-03 09:27:26
阅读次数:
310
IMEI号,IESI号,手机型号:privatevoidgetInfo(){TelephonyManagermTm=(TelephonyManager)getSystemService(TELEPHONY_SERVICE);Stringimei=mTm.getDeviceId();Stringims...
分类:
移动开发 时间:
2014-08-31 13:04:31
阅读次数:
342
1 public void getPhoneInfo() { 2 TelephonyManager tm = (TelephonyManager) this.getSystemService(TELEPHONY_SERVICE); 3 String mtyb = android.os.B...
分类:
移动开发 时间:
2014-08-30 20:25:29
阅读次数:
235
直接上代码:
/**
* 获取SIM卡运营商
*
* @param context
* @return
*/
public static String getOperators(Context context) {
TelephonyManager tm = (TelephonyManager) context
.getSystemService(Conte...
分类:
移动开发 时间:
2014-08-27 23:31:18
阅读次数:
355