라이브 방
- 말하는 사람 배경 변경 - 배경 On/Off 색상 변경 - 참여자 숫자 색상 변경, 폰트 Bold
This commit is contained in:
parent
127e1f6673
commit
82cf1658cb
|
@ -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
|
||||
}
|
||||
}
|
||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 2.6 KiB After Width: | Height: | Size: 2.4 KiB |
Binary file not shown.
Before Width: | Height: | Size: 2.2 KiB |
|
@ -4,5 +4,5 @@
|
|||
<corners android:radius="13.3dp" />
|
||||
<stroke
|
||||
android:width="1dp"
|
||||
android:color="@color/color_9970ff" />
|
||||
android:color="@color/color_3bb9f1" />
|
||||
</shape>
|
|
@ -4,5 +4,5 @@
|
|||
<corners android:radius="46.7dp" />
|
||||
<stroke
|
||||
android:width="3dp"
|
||||
android:color="@color/color_9970ff" />
|
||||
android:color="@color/color_3bb9f1" />
|
||||
</shape>
|
|
@ -241,6 +241,7 @@
|
|||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginStart="6.7dp"
|
||||
android:fontFamily="@font/gmarket_sans_medium"
|
||||
android:gravity="center_vertical"
|
||||
android:textColor="@color/color_bbbbbb"
|
||||
tools:text="999,999,999,999" />
|
||||
|
@ -263,7 +264,7 @@
|
|||
android:layout_height="wrap_content"
|
||||
android:fontFamily="@font/gmarket_sans_medium"
|
||||
android:text="참여자"
|
||||
android:textColor="@color/color_eeeeee"
|
||||
android:textColor="@color/color_bbbbbb"
|
||||
android:textSize="12sp" />
|
||||
|
||||
<TextView
|
||||
|
@ -271,8 +272,8 @@
|
|||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginStart="6.7dp"
|
||||
android:fontFamily="@font/gmarket_sans_medium"
|
||||
android:textColor="@color/color_9970ff"
|
||||
android:fontFamily="@font/gmarket_sans_bold"
|
||||
android:textColor="@color/color_bbbbbb"
|
||||
android:textSize="12sp"
|
||||
tools:ignore="RelativeOverlap"
|
||||
tools:text="18" />
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:contentDescription="@null"
|
||||
android:src="@drawable/bg_round_corner_46_7_transparent_9970ff" />
|
||||
android:src="@drawable/bg_round_corner_46_7_transparent_3bb9f1" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_mute"
|
||||
|
|
Loading…
Reference in New Issue