0

我正在开发一个应用程序,我只想在启用 GPS 的情况下执行一段代码。

我正在使用这段代码检查 GPS:

isGPSEnabled = locationManager
                .isProviderEnabled(LocationManager.GPS_PROVIDER);

现在,我像这样使用它:

if (isGPSEnabled) {
            gps_off.setVisibility(View.INVISIBLE);
            ReactiveLocationProvider locationProvider = new ReactiveLocationProvider(getBaseContext());
            locationProvider.getLastKnownLocation()
                    .subscribe(new Action1<Location>() {
                        @Override
                        public void call(Location location) {
                            currentLatDoubleA = location.getLatitude();
                            currentLngDoubleA = location.getLongitude();
                            Toast.makeText(getBaseContext(), "User's location retrieved", Toast.LENGTH_SHORT).show();
                        }
                    });
//        }
            Handler handler = new Handler();
            handler.postDelayed(new Runnable() {
                @Override
                public void run() {
                    retrieveHRequest();
                }
            }, 2000);
        } else {
            gps_off.setVisibility(View.VISIBLE);
            Snackbar snackbar = Snackbar
                    .make(coordinatorLayout, "No location detected!", Snackbar.LENGTH_LONG)
                    .setAction("RETRY", new View.OnClickListener() {
                        @Override
                        public void onClick(View view) {

                            ifLocationAvailable();
                        }
                    });
            snackbar.setDuration(Snackbar.LENGTH_INDEFINITE);
            snackbar.show();
        }

问题是,即使在打开 GPS 之后,Snackbar仍然会弹出显示No location detected!消息,这意味着即使在 GPS 开启时,应该在 GPS 关闭时执行的代码也会被执行。

需要注意的另一件事是,当我在关闭应用程序后重新打开应用程序时,应该在 GPS 开启时执行的代码将毫无问题地执行。

这里出了什么问题?

请告诉我。

4

1 回答 1

0

在您的应用程序中,您希望实现广播接收器以观察 GPS 状态的变化。然后只有应用程序了解您的 GPS 状态变化。

此代码可能对您有所帮助

 public class BootReceiver extends BroadcastReceiver  {

       @Override
    public void onReceive(Context context, Intent intent) {
        LocationManager locationManager = (LocationManager) context
                .getSystemService(Context.LOCATION_SERVICE);
        if (locationManager.isProviderEnabled(LocationManager.GPS_PROVIDER)) {
            // gps enabled and do your action here        } else {
            // gps disabled and do you snack bar action
        }
    }
}
于 2016-08-09T03:34:57.680 回答