码迷,mamicode.com
首页 >  
搜索关键字:telephonymanager    ( 105个结果
[Android]判断网络连接是否可用
/** * 判断移动网络是否开启 * * @param context * @return */ public static boolean isNetEnabled(Context context) { TelephonyManager tm = (TelephonyManager) context .getSystemService(Context.TELE...
分类:移动开发   时间:2014-10-19 11:35:58    阅读次数:620
TelephonyManager类:Android手机及Sim卡状态的获取
TelephonyManager这个类很有用,可以得到很多关于手机和Sim卡的信息。 直接上注释后的代码,请享用package net.sunniwell.app;import android.app.Activity;import android.os.Bundle;import android....
分类:移动开发   时间:2014-09-26 22:56:48    阅读次数:183
【工具类】获取手机sim卡的运营商
加入权限: 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
Android 常用系统服务
TelephonyManager类:管理手机通话状态,电话网络信息的服务类,获取方法为: TelephonyManager manager=(TelephonyManager)getSystemService(Context.TELEPHONY_SERVICE) 常用方法:listen(PhoneS...
分类:移动开发   时间:2014-09-12 23:15:34    阅读次数:234
Android 实现自动接听和挂断电话功能
添加权限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
Android 实现自动接听和挂断电话功能
添加权限main.xml PhoneUtils.java是手机功能类,从TelephonyManager中实例化ITelephony并返回,源码如下:package com.testTelephony;...
分类:移动开发   时间:2014-09-03 09:27:26    阅读次数:310
android获取手机信息2
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
Android 获取手机SIM卡运营商
直接上代码: /** * 获取SIM卡运营商 * * @param context * @return */ public static String getOperators(Context context) { TelephonyManager tm = (TelephonyManager) context .getSystemService(Conte...
分类:移动开发   时间:2014-08-27 23:31:18    阅读次数:355
105条   上一页 1 ... 6 7 8 9 10 11 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!