我正在开发一个应用程序,我只想在启用 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 开启时执行的代码将毫无问题地执行。
这里出了什么问题?
请告诉我。