【Android】Android 代码判断当前设备是否为模拟器_移动开发_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > 移动开发 > 【Android】Android 代码判断当前设备是否为模拟器

【Android】Android 代码判断当前设备是否为模拟器

 2013/8/1 16:14:37  Ray-Ray  博客园  我要评论(0)
  • 摘要:【Android】Android代码判断当前设备是否为模拟器方法比较简单,直接粘贴代码//判断当前设备是否是模拟器。如果返回TRUE,则当前是模拟器,不是返回FALSEpublicstaticbooleanisEmulator(Contextcontext){try{TelephonyManagertm=(TelephonyManager)context.getSystemService(Context.TELEPHONY_SERVICE);Stringimei=tm.getDeviceId(
  • 标签:android 代码 设备

 

 

【Android】Android 代码判断当前设备是否为模拟器

方法比较简单,直接粘贴代码

 

  //判断当前设备是否是模拟器。如果返回TRUE,则当前是模拟器,不是返回FALSE
    public static boolean isEmulator(Context context){
        try{
            TelephonyManager tm = (TelephonyManager) context.getSystemService(Context.TELEPHONY_SERVICE);
            String imei = tm.getDeviceId();
            if (imei != null && imei.equals("000000000000000")){
                return true;
            }
            return  (Build.MODEL.equals("sdk")) || (Build.MODEL.equals("google_sdk"));
        }catch (Exception ioe) { 

        }
        return false;
    }

 

上一篇: .Net简单上传与下载 下一篇: 没有下一篇了!
发表评论
用户名: 匿名