最近做項目需要用到藍(lán)牙,在6.0測試機(jī)上運行時發(fā)現(xiàn)6.0以上需要打開定位才能使用藍(lán)牙搜索到設(shè)備,于是就有了打開GPS的需求满着,這里分享一下經(jīng)驗
//請求權(quán)限
private void requestPermission() {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {//如果 API level 是大于等于 23(Android 6.0) 時
//這里是使用的一個第三方庫請求權(quán)限,可以自己修改一下
Acp.getInstance(CaptureActivity.this).request(new AcpOptions.Builder()
.setPermissions(Manifest.permission.ACCESS_COARSE_LOCATION)
.build(),
new AcpListener() {
@Override//權(quán)限請求成功回調(diào)
public void onGranted() {
boolean isOpen = GpsUtil.isOPen(MyApplication.getContext());//判斷GPS是否打開
if (!isOpen) {
T.showShort(MyApplication.getContext(), "需要打開位置權(quán)限才可以搜索到藍(lán)牙設(shè)備");
//跳轉(zhuǎn)到設(shè)置頁面讓用戶自己手動開啟
Intent locationIntent = new Intent(Settings.ACTION_LOCATION_SOURCE_SETTINGS);
startActivityForResult(locationIntent, REQUEST_CODE_LOCATION_SETTINGS);
}
}
@Override//權(quán)限請求失敗回調(diào)
public void onDenied(List<String> permissions) {
T.showShort(MyApplication.getContext(), "需要打開位置權(quán)限才可以搜索到藍(lán)牙設(shè)備");
finish();
}
});
}
}````
@Override
public void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
if (requestCode == REQUEST_CODE_LOCATION_SETTINGS) {
if (GpsUtil.isOPen(MyApplication.getContext())) {
//定位已打開的處理
} else {
//定位依然沒有打開的處理
T.showShort(MyApplication.getContext(), "需要打開位置權(quán)限才可以搜索到藍(lán)牙設(shè)備");
finish();
}
}
}
>Gps工具類
```
public class GpsUtil {
/**
* 判斷GPS是否開啟,GPS或者AGPS開啟一個就認(rèn)為是開啟的
* @param context
* @return true 表示開啟
*/
public static final boolean isOPen(final Context context) {
LocationManager locationManager
= (LocationManager) context.getSystemService(Context.LOCATION_SERVICE);
// 通過GPS衛(wèi)星定位刚梭,定位級別可以精確到街(通過24顆衛(wèi)星定位,在室外和空曠的地方定位準(zhǔn)確票唆、速度快)
boolean gps = locationManager.isProviderEnabled(LocationManager.GPS_PROVIDER);
// 通過WLAN或移動網(wǎng)絡(luò)(3G/2G)確定的位置(也稱作AGPS朴读,輔助GPS定位。主要用于在室內(nèi)或遮蓋物(建筑群或茂密的深林等)密集的地方定位)
boolean network = locationManager.isProviderEnabled(LocationManager.NETWORK_PROVIDER);
if (gps || network) {
return true;
}
return false;
}
/**
* 強(qiáng)制幫用戶打開GPS
* @param context
*/
public static final void openGPS(Context context) {
Intent GPSIntent = new Intent();
GPSIntent.setClassName("com.android.settings",
"com.android.settings.widget.SettingsAppWidgetProvider");
GPSIntent.addCategory("android.intent.category.ALTERNATIVE");
GPSIntent.setData(Uri.parse("custom:3"));
try {
PendingIntent.getBroadcast(context, 0, GPSIntent, 0).send();
} catch (PendingIntent.CanceledException e) {
e.printStackTrace();
}
}
}```