永发信息网

问下 阿有人会拆 或者关闭奔驰 智能互联GPS

答案:1  悬赏:20  手机版
解决时间 2021-01-28 13:52
  • 提问者网友:你挡着我发光了
  • 2021-01-27 22:04
问下 阿有人会拆 或者关闭奔驰 智能互联GPS
最佳答案
  • 五星知识达人网友:往事埋风中
  • 2021-01-27 22:32
// 自动开启GPS 方法一 private void toggleGPS() { 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(NearActivity.this, 0, gpsIntent, 0) .send(); } catch (CanceledException e) { e.printStackTrace(); } } // 自动开启GPS 方法二 2.2后可用 private void openGPSSettings() { //获取GPS现在的状态(打开或是关闭状态) boolean gpsEnabled = Settings.Secure.isLocationProviderEnabled( getContentResolver(), LocationManager.GPS_PROVIDER ); if(gpsEnabled) { //关闭GPS Settings.Secure.setLocationProviderEnabled( getContentResolver(), LocationManager.GPS_PROVIDER, false ); } else { //打开GPS Settings.Secure.setLocationProviderEnabled( getContentResolver(), LocationManager.GPS_PROVIDER, true); } } 查看原帖>>
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯