[v630] fix: 评价按钮完后恢复默认大小;

This commit is contained in:
aibingbing
2024-03-25 13:03:18 +08:00
parent 56ec39ccc9
commit 66fafbc6ad

View File

@@ -52,6 +52,9 @@ class EvaluateView : ConstraintLayout, EvaluateViewModel.EvaluateCallback {
RxUtils.createSubscribe(3_000) {
visibility = GONE
iv_taxt_p_greate_text.alpha = 0f
//恢复默认大小
iv_evaluate_great.scaleX = 1.0f
iv_evaluate_great.scaleY = 1.0f
// 小智回归默认动作
ZhiViewmanager.showListeningAni(ZhiViewmanager.normalAni,false)
}
@@ -72,6 +75,9 @@ class EvaluateView : ConstraintLayout, EvaluateViewModel.EvaluateCallback {
// 小智爱心动作
RxUtils.createSubscribe(3_000) {
visibility = GONE
//恢复默认大小
iv_evaluate_low.scaleX = 1.0f
iv_evaluate_low.scaleY = 1.0f
// 小智回归默认动作
}
}