我正在尝试使用BluatoothLeScanner.startScan功能而不是弃用的BluetoothAdapter.startLeScan。昨天我将我的Nexus 5更新到Android 6.0,从那时起我的应用程序就不再起作用了。我首先添加了这里找到的ACCESS_COARSE_LOCATION首选项,https://developer.android.com/about/versions/marshmallow/android-6.0-changes.html#behavior-hardware-id。然后我添加了这里描述的权限:https://developer.android.com/training/permissions/requesting.html。但最后它似乎无法正常工作,它不会发送回设备。
这是我的代码:
表现
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.stm.sensitronapp">
<uses-sdk android:maxSdkVersion="23"/>
<uses-feature android:name="android.hardware.bluetooth_le" android:required="true"/>
<uses-permission android:name="android.permission.BLUETOOTH"/>
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN"/>
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>`
DeviceScanActivity
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
...
if (ContextCompat.checkSelfPermission(this,Manifest.permission.ACCESS_COARSE_LOCATION)
!= PackageManager.PERMISSION_GRANTED){
if (ActivityCompat.shouldShowRequestPermissionRationale(this,
Manifest.permission.ACCESS_COARSE_LOCATION)) {
} else {
ActivityCompat.requestPermissions(this,
new String[]{Manifest.permission.ACCESS_COARSE_LOCATION},
MY_PERMISSIONS_REQUEST_ACCESS_COARSE);
}
}
// Device scan callback.
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
if (ContextCompat.checkSelfPermission(this,Manifest.permission.ACCESS_COARSE_LOCATION)
== PackageManager.PERMISSION_GRANTED) {
mScanCallback = new ScanCallback() {
@Override
public void onScanResult(int callbackType, ScanResult result) {
super.onScanResult(callbackType, result);
mLeDeviceListAdapter.addDevice(result.getDevice());
mLeDeviceListAdapter.notifyDataSetChanged();
}
};
}
}
}
final BluetoothManager bluetoothManager =
(BluetoothManager) getSystemService(Context.BLUETOOTH_SERVICE);
mBluetoothAdapter = bluetoothManager.getAdapter();
if (mBluetoothAdapter.getState() == BluetoothAdapter.STATE_ON) {
mSwipeRefreshLayout.setRefreshing(true);
mLeDeviceListAdapter.clear();
mBluetoothLeScanner = mBluetoothAdapter.getBluetoothLeScanner();
if(ContextCompat.checkSelfPermission(this,
Manifest.permission.ACCESS_COARSE_LOCATION ) == PackageManager.PERMISSION_GRANTED) {
mBluetoothLeScanner.startScan(mScanCallback);
}
}
编辑:解决这个问题我只打开了GPS。在this way中以编程方式执行它很容易。
如果授予权限,请尝试:打开GPS。
你是应用程序在启动时提示输入位置权限吗?如果不是,请在其他地方处理代码,以便提示它。
此外,您可以检查此项以测试您的应用是否正常运行:
打开设置>应用> YourApplication>权限并启用位置,然后尝试扫描结果。
仅当您在清单上提供了ACCESS_COARSE_LOCATION时,才会在权限下列出位置。
使用上面提供的解决方案有效但副作用是您必须为不需要它的东西启用位置服务。一个丑陋且令人不满意的工作是在清单中指定目标版本
机器人:targetSdkVersion = “21”
它允许在我的Nexus 7上进行扫描,即使安装的版本是6.0.1。我不知道针对较低版本的副作用是什么,而不是安装版本,但至少扫描工作。可能是无GPS设备的唯一解决方案(如果存在此类设备)。
谷歌应该为此钉死在十字架上。
一个 - 不完美的答案是,一旦启用了新的运行时位置权限,您仍然可以使用相同的旧方法BT扫描方法。
mBluetoothAdapter.startDiscovery();
.......
private final BroadcastReceiver mReceiver = new BroadcastReceiver() {
public void onReceive(Context context, Intent intent) {
String action = intent.getAction();
if (BluetoothDevice.ACTION_FOUND.equals(action)) {
BluetoothDevice device = (BluetoothDevice) intent.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE);
mDeviceList.add(device);
}
}
};
这是一个老问题,但我会回答帮助某人。 不幸的是,ACCESS_COARSE_LOCATION和targetSdkVersion 22的组合在某些设备上不起作用。 这不是一个好方法,但我在不使用运行时权限的情况下以下列方式解决了它(ACCESS_COARSE_LOCATION或ACCESS_FINE_LOCATION)
<uses-permission android:name="android.permission.READ_OWNER_DATA" />
<uses-permission android:name="android.permission.WRITE_OWNER_DATA" />
测试到Android 4.4~7.1.1
将'minSdkVersion'设置为18 targetSdkVersion 22