gpt4 book ai didi

android - 如何在 Android 应用程序上以编程方式打开 GPS

转载 作者:太空宇宙 更新时间:2023-11-03 13:53:17 24 4
gpt4 key购买 nike

请帮我在我的移动应用程序(如 OlaCabs)中打开 GPS。我正在使用以下代码:

String provider = 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"));
sendBroadcast(poke);
}

但它无法打开 GPS..

最佳答案

Android 准则在 4.0 版以上发生了变化。对于 4.0 以上的版本,您不能以编程方式关闭 GPS...

不要像我一样浪费时间

要使用对话框检查它:

https://developers.google.com/android/reference/com/google/android/gms/location/SettingsApi

或者那个:

https://stackoverflow.com/a/12446361/3626214

关于android - 如何在 Android 应用程序上以编程方式打开 GPS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32625510/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com