从android 6开始,blutooth地址和wifi地址(mac)被删除
棉花糖.
bluetooth.getAddress();
我们如何从AndroID设备获取唯一号码,如蓝牙地址或wifi mac地址?
解决方法:
有意删除了对mac地址的访问:
http://developer.android.com/about/versions/marshmallow/android-6.0-changes.html
使用此代码:
通过反射或Settings.Secure获取mac地址:
String macAddress = androID.provIDer.Settings.Secure.getString(context.getContentResolver(), "bluetooth_address");
总结 以上是内存溢出为你收集整理的Android在棉花糖中获取蓝牙地址全部内容,希望文章能够帮你解决Android在棉花糖中获取蓝牙地址所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)