`

设置GPS是否可用

阅读更多

设置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(this, 0, gpsIntent, 0).send();
		}
		catch (CanceledException e) {
			e.printStackTrace();
		}
	}
 
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics