我正在制作一个超级克隆应用程序
这是我的代码,它会检查是否有任何驱动器处于活动状态,如果是这样,它会更新骑手位置
if (driverActive != false) {
LatLng userLocation = new LatLng(location.getLatitude(), location.getLongitude());
mMap.clear();
mMap.moveCamera(CameraUpdateFactory.newLatLngZoom(userLocation, 20));
mMap.addMarker(new MarkerOptions().position(userLocation).title("Your Location"));
}
android studio显示警告driverActive!= false'可以简化为'driverActive并且它不会更新rider地图
但如果我删除driverActive if语句它的工作原理并更新骑手的位置......
任何帮助,将不胜感激
它只是将ParseUser函数拒绝了,因为它没有记录匿名用户并因此使其崩溃,因为当检查函数获取信息时,在使我的应用程序崩溃时没有任何东西使得driverActive为null。
不管怎么说,还是要谢谢你