[Taxi-d 280, Taxi-p 130] taxi 乘客屏去掉log ,去掉调试

This commit is contained in:
wangmingjun
2022-06-27 13:21:04 +08:00
committed by liujing
parent 1cd6421e36
commit 652085e1a9
2 changed files with 1 additions and 12 deletions

View File

@@ -291,10 +291,6 @@ public class TaxiPassengerBaseFragment extends MvpFragment<TaxiPassengerBaseFrag
OverlayViewUtils.showOverlayView(getActivity(),mStartAutopilotView.get());
updateStartAutopilotBtnStatus(isClickable);
}else {
CallerLogger.INSTANCE.d(M_TAXI_P+" showOrHideStartAutopilotView","mStartAutopilotView = " + mStartAutopilotView);
if (mStartAutopilotView != null){
CallerLogger.INSTANCE.d(M_TAXI_P+" showOrHideStartAutopilotView","mStartAutopilotView.get() = " + mStartAutopilotView.get());
}
if (mStartAutopilotView == null || mStartAutopilotView.get() == null){
return;
}

View File

@@ -72,14 +72,7 @@ public class TaxiPassengerStartAutopilotView extends RelativeLayout implements V
svCarStartingFrame = view.findViewById(R.id.taxi_p_autopilot_starting);
svCarStartingFrame.setBitmapIds(Arrays.asList(startingAnimIds));
svCarStartingFrame.setDuration(1680);
svCarStartingFrame.setOnLongClickListener(new OnLongClickListener() {
@Override
public boolean onLongClick(View v) {
TaxiPassengerModel.getInstance().startServicePilotDone();
return false;
}
});
svCarStartingFrame.setDuration(1300);
}
public void setOnClickStartAutopilotBtnCallback(ITPClickStartAutopilotCallback clickCallback){