Android Bluetoothが近くの機器を検索できない問題
3268 ワード
先日Android Bluetoothについて検討したところ、デバイスを検索する際にどうしても近くのBluetoothデバイスが検索できず、エラーも報告されていませんでしたが、資料を調べてみると、Bluetooth検索付近のデバイスを起動する際にLOCATION権限が必要になり、Android M以下はリストに追加するだけです
Android M以上は自己申請権限が必要です.
Android M以上は自己申請権限が必要です.
private static final int ACCESS_LOCATION = 1001;
if(Build.VERSION.SDK_INT > Build.VERSION_CODES.M){
int permissionCheck = 0;
permissionCheck = this.checkSelfPermission(Manifest.permission.ACCESS_FINE_LOCATION);
permissionCheck += this.checkSelfPermission(Manifest.permission.ACCESS_COARSE_LOCATION);
if (permissionCheck != PackageManager.PERMISSION_GRANTED) {
//
this.requestPermissions(
new String[]{Manifest.permission.ACCESS_FINE_LOCATION,
Manifest.permission.ACCESS_COARSE_LOCATION},
ACCESS_LOCATION); //Any number
}else{//
//
}
}
@Override
public void onRequestPermissionsResult(int requestCode, String[] permissions, int[] grantResults) {
switch (requestCode) {
case ACCESS_LOCATION:
if (hasAllPermissionsGranted(grantResults)) {
// Permission Granted
...
} else {
// Permission Denied
...
}
break;
}
}
//
private boolean hasAllPermissionsGranted(@NonNull int[] grantResults) {
for (int grantResult : grantResults) {
if (grantResult == PackageManager.PERMISSION_DENIED) {
return false;
}
}
return true;
}