[code_opt_3.3.0]merge

This commit is contained in:
zhongchao
2023-06-12 14:12:33 +08:00
parent e48b56a154
commit 6a5f277772
2 changed files with 14 additions and 9 deletions

View File

@@ -204,12 +204,15 @@ class BusPassengerFunctionOrderPresenter(view: M1OrderLineFragment?) :
BaseDPMsg::class.java
) as BaseDPMsg
if (msg.type == DPMsgType.TYPE_CHANGE_DEST.type) {
val dest = GsonUtils.fromJson(
val msg = GsonUtils.fromJson(
String(byteArray),
ChangeDestMsg::class.java
) as ChangeDestMsg
CallerLogger.d(M_BUS_P + BaseDPMsg.TAG, "接受数据:切换站点${dest}")
if (dest.isConfirmed) {
CallerLogger.d(M_BUS_P + BaseDPMsg.TAG, "接受数据:切换站点${msg}")
if (msg.isConfirmed) {
if(msg.arriveStatus==2){
return@post
}
ToastCharterUtils.showShort("站点确定")
mView?.setEnableSiteStatus(true)
checkLine = tempCheckLine

View File

@@ -107,12 +107,14 @@ class M1SoftFragment :
private fun setAirConditionAni() {
dbv_wind.post {
val measuredHeight = dbv_wind.measuredHeight
animator1 = ObjectAnimator.ofInt(dbv_wind, "showHeight", 0, measuredHeight).apply {
duration = 1000
repeatCount = ValueAnimator.INFINITE
if(rg_setting_windspeed.checkedRadioButtonId!=0&&tv_aircondition_switch.isChecked){
start()
dbv_wind?.let {
val measuredHeight = it.measuredHeight
animator1 = ObjectAnimator.ofInt(it, "showHeight", 0, measuredHeight).apply {
duration = 1000
repeatCount = ValueAnimator.INFINITE
if(rg_setting_windspeed.checkedRadioButtonId!=0&&tv_aircondition_switch.isChecked){
start()
}
}
}
}