라이브 방

- 말하는 사람 배경 변경
- 배경 On/Off 색상 변경
- 참여자 숫자 색상 변경, 폰트 Bold
This commit is contained in:
klaus 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( binding.tvBgSwitch.setTextColor(
ContextCompat.getColor( ContextCompat.getColor(
applicationContext, applicationContext,
R.color.color_9970ff R.color.color_3bb9f1
) )
) )
binding.tvBgSwitch binding.tvBgSwitch
.setBackgroundResource(R.drawable.bg_round_corner_13_3_transparent_9970ff) .setBackgroundResource(R.drawable.bg_round_corner_13_3_transparent_3bb9f1)
} else { } else {
binding.ivCover.visibility = View.GONE binding.ivCover.visibility = View.GONE
binding.tvBgSwitch.text = "배경 OFF" binding.tvBgSwitch.text = "배경 OFF"
@ -837,10 +837,8 @@ class LiveRoomActivity : BaseActivity<ActivityLiveRoomBinding>(ActivityLiveRoomB
viewModel.isShowNotice.observe(this) { viewModel.isShowNotice.observe(this) {
if (it) { if (it) {
binding.ivNotification.setImageResource(R.drawable.ic_notice_selected)
binding.rlNotice.visibility = View.VISIBLE binding.rlNotice.visibility = View.VISIBLE
} else { } else {
binding.ivNotification.setImageResource(R.drawable.ic_notice_normal)
binding.rlNotice.visibility = View.GONE 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

View File

@ -4,5 +4,5 @@
<corners android:radius="13.3dp" /> <corners android:radius="13.3dp" />
<stroke <stroke
android:width="1dp" android:width="1dp"
android:color="@color/color_9970ff" /> android:color="@color/color_3bb9f1" />
</shape> </shape>

View File

@ -4,5 +4,5 @@
<corners android:radius="46.7dp" /> <corners android:radius="46.7dp" />
<stroke <stroke
android:width="3dp" android:width="3dp"
android:color="@color/color_9970ff" /> android:color="@color/color_3bb9f1" />
</shape> </shape>

View File

@ -241,6 +241,7 @@
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_marginStart="6.7dp" android:layout_marginStart="6.7dp"
android:fontFamily="@font/gmarket_sans_medium"
android:gravity="center_vertical" android:gravity="center_vertical"
android:textColor="@color/color_bbbbbb" android:textColor="@color/color_bbbbbb"
tools:text="999,999,999,999" /> tools:text="999,999,999,999" />
@ -263,7 +264,7 @@
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:fontFamily="@font/gmarket_sans_medium" android:fontFamily="@font/gmarket_sans_medium"
android:text="참여자" android:text="참여자"
android:textColor="@color/color_eeeeee" android:textColor="@color/color_bbbbbb"
android:textSize="12sp" /> android:textSize="12sp" />
<TextView <TextView
@ -271,8 +272,8 @@
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_marginStart="6.7dp" android:layout_marginStart="6.7dp"
android:fontFamily="@font/gmarket_sans_medium" android:fontFamily="@font/gmarket_sans_bold"
android:textColor="@color/color_9970ff" android:textColor="@color/color_bbbbbb"
android:textSize="12sp" android:textSize="12sp"
tools:ignore="RelativeOverlap" tools:ignore="RelativeOverlap"
tools:text="18" /> tools:text="18" />

View File

@ -23,7 +23,7 @@
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent" android:layout_height="match_parent"
android:contentDescription="@null" android:contentDescription="@null"
android:src="@drawable/bg_round_corner_46_7_transparent_9970ff" /> android:src="@drawable/bg_round_corner_46_7_transparent_3bb9f1" />
<ImageView <ImageView
android:id="@+id/iv_mute" android:id="@+id/iv_mute"