Android自动开启GPS

1.第一种方法

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(StartActivity.this, 0, gpsIntent, 0).send();
            } catch (CanceledException e) {
                    e.printStackTrace();
            }
    }
 

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);

    }
   
 3.第三种方法(手动设置)

     LocationManager alm = (LocationManager)StartActivity.this.getSystemService(Context.LOCATION_SERVICE);       
       if (alm.isProviderEnabled(android.location.LocationManager.GPS_PROVIDER))
       {           
        Toast.makeText(this, "GPS模块正常", Toast.LENGTH_SHORT).show();
       }       
      
       Toast.makeText(this, "请开启GPS!", Toast.LENGTH_SHORT).show();
       Intent intent = new Intent(Settings.ACTION_SECURITY_SETTINGS);
       startActivityForResult(intent,0); //此为设置完成后返回到获取界面  
   
 第一第二种需要加上权限

  <!--允许程序读取或写入系统设置 -->
 <uses-permission android:name="android.permission.WRITE_SETTINGS" ></uses-permission>
 <uses-permission android:name="android.permission.WRITE_SECURE_SETTINGS"/>


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值