少年乘勇气,百战过乌孙。这篇文章主要讲述android7.0关于TelephonyManager.getDeviceId()返回null的问题相关的知识,希望能为你提供帮助。
在android7.0的系统下发现TelephonyManager.getDeviceId()在权限允许的情况下取得返回值也为null,解决方法如下:
【android7.0关于TelephonyManager.getDeviceId()返回null的问题】
public static String getDeviceId(Context context) {
String id; //android.telephony.TelephonyManager TelephonyManager mTelephony = (TelephonyManager) context.getSystemService(Context.TELEPHONY_SERVICE); if (mTelephony.getDeviceId() != null) { id = mTelephony.getDeviceId(); } else { //android.provider.Settings; id = Settings.Secure.getString(context.getApplicationContext().getContentResolver(), Settings.Secure.ANDROID_ID); } return id; }
相关资料地址:http://stackoverflow.com/questions/3802644/will-telephonymanger-getdeviceid-return-device-id-for-tablets-like-galaxy-tab
推荐阅读
- Android Bundle传递数据
- Android monkey
- 申请 Apple ID 的操作方法
- Skype for Business 2015全新部署_09.Office Web App服务器安装
- 02 Django框架基础(APP的创建访问)
- Android源码学习 Handler
- Android快速开发常用知识点系列目录
- 手机APP ~ MUI——创建页面方法
- appium-andriod自动化实现注意项