android 如何打开GPS?

来源:学生作业帮助网 编辑:作业帮 时间:2024/05/09 17:06:14

android 如何打开GPS?
android 如何打开GPS?

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);android2.2以后好像不可以用另外一种是:Settings.Secure.setLocationProviderEnabled(getContentResolver(),LocationManager.GPS_PROVIDER,true);需要程序放入System/APP 或者root求一种可以使用的