解决了bug

【在线车辆】非本人车辆应该是设计图上的白色,当前是蓝色的
http://jira.zhidaohulian.com/projects/UI/issues/UI-26?filter=myopenissues
This commit is contained in:
董宏宇
2020-02-04 18:01:54 +08:00
parent 087338ad26
commit 86649e8af7
4 changed files with 4 additions and 4 deletions

View File

@@ -25,7 +25,7 @@ public class MarkerCarInfo implements Serializable {
public String getCarTypeName() {
if (TextUtils.isEmpty(carTypeName)) {
return "未知";
return "";
}
return carTypeName;
}

View File

@@ -83,7 +83,7 @@ public class MarkerUserInfo implements Serializable {
public String getGender() {
if (TextUtils.isEmpty(gender)) {
return "";
return "设置";
}
return gender;
}

View File

@@ -71,7 +71,7 @@ public class MapMarkerInfoView extends MapMarkerBaseView {
ivUserHead.setVisibility(View.VISIBLE);
ivIcon.setVisibility(View.INVISIBLE);
loadImageWithMarker(markerShowEntity);
ivCar.setImageResource(R.drawable.icon_map_marker_car_blue);
ivCar.setImageResource(R.drawable.icon_map_marker_car_gray);
ivCar.setRotation((float) markerShowEntity.getMarkerLocation().getAngle());
if (bindObj instanceof MarkerOnlineCar) {

View File

@@ -62,7 +62,7 @@ public class MapMarkerView extends MapMarkerBaseView {
ivUserHead.setVisibility(View.VISIBLE);
ivIcon.setVisibility(View.INVISIBLE);
loadImageWithMarker(markerShowEntity);
ivCar.setImageResource(R.drawable.icon_map_marker_car_blue);
ivCar.setImageResource(R.drawable.icon_map_marker_car_gray);
ivCar.setRotation((float) markerShowEntity.getMarkerLocation().getAngle());
if (bindObj instanceof MarkerOnlineCar) {