라이브 방

- 말하는 사람 배경 변경
- 배경 On/Off 색상 변경
- 참여자 숫자 색상 변경, 폰트 Bold
This commit is contained in:
2024-01-15 23:11:08 +09:00
parent 127e1f6673
commit 82cf1658cb
7 changed files with 9 additions and 10 deletions

View File

@@ -622,11 +622,11 @@ class LiveRoomActivity : BaseActivity<ActivityLiveRoomBinding>(ActivityLiveRoomB
binding.tvBgSwitch.setTextColor(
ContextCompat.getColor(
applicationContext,
R.color.color_9970ff
R.color.color_3bb9f1
)
)
binding.tvBgSwitch
.setBackgroundResource(R.drawable.bg_round_corner_13_3_transparent_9970ff)
.setBackgroundResource(R.drawable.bg_round_corner_13_3_transparent_3bb9f1)
} else {
binding.ivCover.visibility = View.GONE
binding.tvBgSwitch.text = "배경 OFF"
@@ -837,10 +837,8 @@ class LiveRoomActivity : BaseActivity<ActivityLiveRoomBinding>(ActivityLiveRoomB
viewModel.isShowNotice.observe(this) {
if (it) {
binding.ivNotification.setImageResource(R.drawable.ic_notice_selected)
binding.rlNotice.visibility = View.VISIBLE
} else {
binding.ivNotification.setImageResource(R.drawable.ic_notice_normal)
binding.rlNotice.visibility = View.GONE
}
}