如何检查GPS是否被禁用安卓

2022-09-03 18:15:38

我有两个文件MainActivity.java和HomeFragment.java在MainActivity中调用HomeFragment的函数,该函数要求用户打开手机上的位置服务。问题是,即使用户已经打开了位置功能,该功能仍然被调用。有没有办法让我只有当位置功能关闭时,才能启动HomeFragment中的功能。

家庭碎屑.java

public static void displayPromptForEnablingGPS(
        final Activity activity)
{
    final AlertDialog.Builder builder =
            new AlertDialog.Builder(activity);
    final String action = Settings.ACTION_LOCATION_SOURCE_SETTINGS;
    final String message = "Enable either GPS or any other location"
            + " service to find current location.  Click OK to go to"
            + " location services settings to let you do so.";


    builder.setMessage(message)
            .setPositiveButton("OK",
                    new DialogInterface.OnClickListener() {
                        public void onClick(DialogInterface d, int id) {
                            activity.startActivity(new Intent(action));
                            d.dismiss();
                        }
                    });

    builder.create().show();
}

主要活动.java

public void showMainView() {
    HomeFragment.displayPromptForEnablingGPS(this);
}

谢谢:)


答案 1

你可以使用类似这样的东西:

final LocationManager manager = (LocationManager) getSystemService( Context.LOCATION_SERVICE );

if ( !manager.isProviderEnabled( LocationManager.GPS_PROVIDER ) ) {
    // Call your Alert message
}

这应该可以解决问题。

要检查“定位服务”是否已启用,您可以使用类似于以下内容的代码:

String locationProviders = Settings.Secure.getString(getContentResolver(), Settings.Secure.LOCATION_PROVIDERS_ALLOWED);
if (locationProviders == null || locationProviders.equals("")) {
...
startActivity(new Intent(Settings.ACTION_LOCATION_SOURCE_SETTINGS));
}

来源:马库斯的帖子在这里找到


答案 2