1

可能重复:
如何在 Android Cupcake 中以编程方式启用 GPS

我目前正在编写一个适用于 GPS 的 Android 应用程序。目前我能够确定是否启用了 GPS。我的问题是,如果 GPS 被禁用,我想在应用程序启动时启用它。我怎样才能以编程方式做到这一点?另外,我想创建打开和关闭 GPS 的功能,我阅读了 stackoverflow 上关于它的所有线程,但是我尝试的所有功能都得到了“不幸的是你的应用程序必须停止”(我没有忘记添加权限)

有人可以帮助我启用或禁用 GPS 的工作功能吗?

<uses-permission android:name="android.permission.READ_PHONE_STATE" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_LOCATION_EXTRA_COMMANDS"/>
<uses-permission android:name="android.permission.ACCESS_MOCK_LOCATION" />
<uses-permission android:name="android.permission.CONTROL_LOCATION_UPDATES" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WRITE_SECURE_SETTINGS" />
<uses-permission android:name="android.permission.WRITE_SETTINGS" />

起初,我使用了这些功能:

 private void turnGPSOn(){
        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);
        }
    }

    private void turnGPSOff(){
        String provider = Settings.Secure.getString(getContentResolver(), Settings.Secure.LOCATION_PROVIDERS_ALLOWED);

        if(provider.contains("gps")){ //if gps is enabled
            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);
        }
    }

然后我尝试使用:

ENABLE GPS:

Intent intent=new Intent("android.location.GPS_ENABLED_CHANGE");
intent.putExtra("enabled", true);
sendBroadcast(intent);
DISABLE GPS:

Intent intent = new Intent("android.location.GPS_ENABLED_CHANGE");
intent.putExtra("enabled", false);
sendBroadcast(intent);

两者都不适合我

有人知道吗?

4

1 回答 1

7

您不能以编程方式打开和关闭 GPS。您能做的最好的事情就是将用户发送到允许他们自己操作的设置屏幕。

final LocationManager manager = (LocationManager) getSystemService( Context.LOCATION_SERVICE );
if ( !manager.isProviderEnabled( LocationManager.GPS_PROVIDER ) ) {
     new Intent(Settings.ACTION_LOCATION_SOURCE_SETTINGS);
     startActivity(intent);
}

存在以编程方式打开/关闭 GPS 的黑客攻击,但它们仅适用于旧版本的 Android。即使可以,也不要这样做。用户可能已关闭 GPS,因为他们不想让应用程序精确跟踪它们。试图强迫改变他们的决定是非常糟糕的形式。

如果您需要启用 GPS,请在您的应用程序启动时检查它,如果用户不启用它,则保释。

于 2012-09-14T20:58:13.967 回答