码迷,mamicode.com
首页 >  
搜索关键字:telephonymanager    ( 105个结果
利用反射拨号
private void dial(String number) {Class c = TelephonyManager.class;Method getITelephonyMethod = null;try {getITelephonyMethod = c.getDeclaredMethod("g...
分类:其他好文   时间:2015-03-16 22:38:29    阅读次数:146
android 获取本机SMI卡号码
1 //获取手机号码 2 TelephonyManager tm = (TelephonyManager)this.getSystemService(Context.TELEPHONY_SERVICE); 3 String deviceid = tm.getDeviceId();//获取智能...
分类:移动开发   时间:2015-03-16 20:59:52    阅读次数:176
android 判断真机或者模拟器
加入权限设置//判断当前设备是否是模拟器。如果返回TRUE,则当前是模拟器,不是返回FALSE private static boolean isEmulator(Context context){ try{ TelephonyManager tm = (T...
分类:移动开发   时间:2015-03-11 16:48:24    阅读次数:213
一起学android之如何获取Android设备的唯一识别码笔记(21)
因为需要在项目中需要获得一个稳定、可靠的设备唯一识别码,因此搜了一些网上的资料。今天我们将介绍几种方式。        1. DEVICE_ID  假设我们确实需要用到真实设备的标识,可能就需要用到DEVICE_ID。在以前,我们的Android设备是手机,这个 DEVICE_ID可以同通过TelephonyManager.getDeviceId()获取,它根据不同的手机...
分类:移动开发   时间:2015-03-11 10:57:33    阅读次数:194
读取SIM卡相关信息
关键代码:TelephonyManager tm = (TelephonyManager) this.getSystemService(Context.TELEPHONY_SERVICE); String imei = tm.getDeviceId(); //取出IMEI String ...
分类:其他好文   时间:2015-03-06 12:20:48    阅读次数:253
Android获取SIM卡的运营商
在Android的主Activity的初始化函数中添加:TelephonyManager tm = (TelephonyManager) this .getSystemService(TELEPHONY_SERVICE); SubscriberId = tm.getSubscriberId(...
分类:移动开发   时间:2015-03-06 10:00:11    阅读次数:170
到底改如何区分android的平板、电视、手机
在没有出现android电视之前,如果要区分平板和手机有很多种方法:方法1:看是否有通话功能 1 public boolean isTabletDevice() { 2 TelephonyManager telephony = (TelephonyManager) mContext....
分类:移动开发   时间:2015-02-26 21:24:56    阅读次数:837
android 检查能否上网
/** * 测试ConnectivityManager * ConnectivityManager主要管理和网络连接相关的操作 * 相关的TelephonyManager则管理和手机、运营商等的相关信息;WifiManager则管理和wifi相关的信息。 * 想访问网络状态,首先得添...
分类:移动开发   时间:2015-02-04 20:11:15    阅读次数:174
Android获取手机状态和监听手机来电状态
获取手机状态: import android.content.Context; import android.telephony.TelephonyManager; //获得相应的系统服务 TelephonyManager tm = (TelephonyManager) getSystemService(Context.TELEPHONY_SERVICE); /**...
分类:移动开发   时间:2015-01-28 16:01:33    阅读次数:217
服务管理类------TelephonyManager
/****@author dingran*创建日期 2010-4-29 下午05:02:47**/package net.sunniwell.app;import android.app.Activity;import android.os.Bundle;import android.telepho...
分类:其他好文   时间:2014-12-21 17:57:04    阅读次数:212
105条   上一页 1 ... 4 5 6 7 8 ... 11 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!