在应用程序启动时打开GPS

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在应用程序启动时打开GPS相关的知识,希望对你有一定的参考价值。

我已经开始在android上使用GoogleMap了,我希望我的应用程序在应用程序启动时自动打开GPS,并在应用程序关闭或用户退出应用程序时关闭。

如何完成上述任务?

答案

Android应用无法自动启用GPS。它需要用户的身份验证才能这样做。

您可以做的最好的事情是有一个弹出对话框,要求用户允许访问位置服务。

另一答案

您可以提示用户打开GPS,如:

private void buildAlertMessageNoGps() {
        final AlertDialog.Builder builder = new AlertDialog.Builder(
                this.getActivity());
        builder.setMessage(R.string.gps_disabled)
                .setCancelable(false)
                .setTitle(R.string.gps_disabled_title)
                .setPositiveButton(R.string.enable,
                        new DialogInterface.OnClickListener() {
                            public void onClick(
                                    @SuppressWarnings("unused") final DialogInterface dialog,
                                    @SuppressWarnings("unused") final int id) {
                                startActivity(new Intent(
                                        android.provider.Settings.ACTION_LOCATION_SOURCE_SETTINGS));
                            }
                        })
                .setNegativeButton(R.string.cancel,
                        new DialogInterface.OnClickListener() {
                            public void onClick(final DialogInterface dialog,
                                    @SuppressWarnings("unused") final int id) {
                                dialog.cancel();

                            }
                        });
        final AlertDialog alert = builder.create();
        alert.show();
    }
另一答案

不,不可能也不合适。没有他的权限,你不能只管理用户电话。

来自Play商店:

“当你试图本地化你的设备时,Cerberus会自动启用GPS(仅限Android <2.3.3),你可以保护它免受未经授权的卸载 - 应用程序配置中的更多信息。”

你可以这样做:

startActivity(new Intent(android.provider.Settings.ACTION_LOCATION_SOURCE_SETTINGS));
另一答案

完全解决方案在这里。

AndroidManifest.xml中

可能你需要以下权限

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />

MainActivity代码

public class MainActivity extends AppCompatActivity {

Context context;

  protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        //... some code to init Activity and etc...

        context = this;

        LocationManager manager = (LocationManager) getSystemService(Context.LOCATION_SERVICE );
        boolean statusOfGPS = manager.isProviderEnabled(LocationManager.GPS_PROVIDER);

        if(!statusOfGPS) // Before show message to turn on GPS be sure it is turned off.
        {
            buildAlertMessageNoGps();
        }
    }



private void buildAlertMessageNoGps() {
        final AlertDialog.Builder builder = new AlertDialog.Builder(
                this.getActivity());
        builder.setMessage(R.string.gps_disabled)
                .setCancelable(false)
                .setTitle(R.string.gps_disabled_title)
                .setPositiveButton(R.string.enable,
                        new DialogInterface.OnClickListener() {
                            public void onClick(
                                    @SuppressWarnings("unused") final DialogInterface dialog,
                                    @SuppressWarnings("unused") final int id) {
                                startActivity(new Intent(
                                        android.provider.Settings.ACTION_LOCATION_SOURCE_SETTINGS));
                            }
                        })
                .setNegativeButton(R.string.cancel,
                        new DialogInterface.OnClickListener() {
                            public void onClick(final DialogInterface dialog,
                                    @SuppressWarnings("unused") final int id) {
                                dialog.cancel();

                            }
                        });
        final AlertDialog alert = builder.create();
        alert.show();
    }

以上是关于在应用程序启动时打开GPS的主要内容,如果未能解决你的问题,请参考以下文章

Android GPS 无法获取我的位置

当我在 GPS 关闭的情况下启动应用程序,后来 GPS 被激活时,未检测到位置

安卓广播gps开启更新位置

linux打开终端如何启动scala,如何在终端下运行Scala代码片段?

初始化 LocationCallback 后打开设备 GPS 时,未调用 LocationCallback onLocationResult

如何使用 Android 中的代码启动和停止 GPS