问题描述
- android 如何自动打开GPS
-
各位大牛,我做了一个应用,需要自动打开GPS,用了网上的方法,不行
[code=java]Settings.Secure.setLocationProviderEnabled(getContentResolver(),LocationManager.GPS_PROVIDER, true);[/code]
这个需要android.permission.WRITE_SECURE_SETTINGS权限 但是这个权限只给系统应用
还有1、locationManager.setTestProviderEnabled(android.location.LocationManager.GPS_PROVIDER,true);
2、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();
}
3、Intent intent = new Intent("android.location.GPS_ENABLED_CHANGE");
intent.putExtra("enabled", true);
this.sendBroadcast(intent);
Stringprovider=Settings.Secure.getString(getContentResolver(),Settings.Secure.LOCATION_PROVIDERS_ALLOWED);
if(!provider.contains("gps")){ //if gps is disabled
final Intent poke = new Intent();
poke.setClassName("com.android.settings", "com.android.settings.widget.SettingsAppWidgetProvider");
poke.addCategory(Intent.CATEGORY_ALTERNATIVE);
poke.setData(Uri.parse("3"));
this.sendBroadcast(poke);
}
以上方法都试了 不行 模拟器是4.0.3的,请各位大牛帮我一把
解决方案
因为GPS会有因私问题,所以不能用程序打开,只有引导用户至设置界面让他们手动打开
时间: 2024-10-18 13:30:02