Google地图会根据驱动器是否处于活动状态更新地图

问题描述 投票:0回答:1

我正在制作一个超级克隆应用程序

这是我的代码,它会检查是否有任何驱动器处于活动状态,如果是这样,它会更新骑手位置

    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语句它的工作原理并更新骑手的位置......

任何帮助,将不胜感激

java android maps
1个回答
0
投票

它只是将ParseUser函数拒绝了,因为它没有记录匿名用户并因此使其崩溃,因为当检查函数获取信息时,在使我的应用程序崩溃时没有任何东西使得driverActive为null。

不管怎么说,还是要谢谢你

© www.soinside.com 2019 - 2024. All rights reserved.