開啟android的gps

風的王子發表於2013-11-12

1.開啟android的gps

Intent intent = new Intent();

intent.setClassName("com.android.settings", "com.android.settings.widget.SettingsAppWidgetProvider");
intent.addCategory("android.intent.category.ALTERNATIVE");
intent.setData(Uri.parse("custom:3"));
context.sendBroadcast(intent);//或者PendingIntent.getBroadcast(this, 0, Intent, 0).send();

  

另外一種方式:適合2.2以上機器

 Settings.Secure.setLocationProviderEnabled(getContentResolver(),LocationManager.GPS_PROVIDER, true);

相關文章