|
@@ -189,7 +189,7 @@ class RewardView : FrameLayout, IRoomActiveListener, RoomTimer.TimeTickListener
|
|
|
duration = "five"
|
|
|
nextCoins = model.coin.ten
|
|
|
nextTime = 10
|
|
|
- binding?.tvCoins?.text = "+${model.coin.five}fiv"
|
|
|
+ binding?.tvCoins?.text = "+${model.coin.five}"
|
|
|
//领取奖励倒计时
|
|
|
if (totalTime >= 300){
|
|
|
startGetAnimation()
|
|
@@ -203,7 +203,7 @@ class RewardView : FrameLayout, IRoomActiveListener, RoomTimer.TimeTickListener
|
|
|
duration = "ten"
|
|
|
nextCoins = model.coin.fifteen
|
|
|
nextTime = 15
|
|
|
- binding?.tvCoins?.text = "+${model.coin.ten}ten"
|
|
|
+ binding?.tvCoins?.text = "+${model.coin.ten}"
|
|
|
|
|
|
//领取奖励倒计时
|
|
|
if (totalTime >= 600){
|
|
@@ -218,7 +218,7 @@ class RewardView : FrameLayout, IRoomActiveListener, RoomTimer.TimeTickListener
|
|
|
duration = "fifteen"
|
|
|
nextCoins = model.coin.thirty
|
|
|
nextTime = 30
|
|
|
- binding?.tvCoins?.text = "+${model.coin.fifteen}fif"
|
|
|
+ binding?.tvCoins?.text = "+${model.coin.fifteen}"
|
|
|
//领取奖励倒计时
|
|
|
if (totalTime >= 900){
|
|
|
startGetAnimation()
|
|
@@ -232,7 +232,7 @@ class RewardView : FrameLayout, IRoomActiveListener, RoomTimer.TimeTickListener
|
|
|
duration = "thirty"
|
|
|
nextCoins = 0
|
|
|
nextTime = 0
|
|
|
- binding?.tvCoins?.text = "+${model.coin.thirty}thi"
|
|
|
+ binding?.tvCoins?.text = "+${model.coin.thirty}"
|
|
|
//领取奖励倒计时
|
|
|
if (totalTime >= 1800){
|
|
|
startGetAnimation()
|