diff --git a/app/src/main/java/kr/co/vividnext/sodalive/live/room/LiveRoomActivity.kt b/app/src/main/java/kr/co/vividnext/sodalive/live/room/LiveRoomActivity.kt index 5bd284f..e9cdafa 100644 --- a/app/src/main/java/kr/co/vividnext/sodalive/live/room/LiveRoomActivity.kt +++ b/app/src/main/java/kr/co/vividnext/sodalive/live/room/LiveRoomActivity.kt @@ -1477,6 +1477,12 @@ class LiveRoomActivity : BaseActivity(ActivityLiveRoomB speakerListAdapter.activeSpeakers.clear() speakerListAdapter.activeSpeakers.addAll(activeSpeakerIds) speakerListAdapter.notifyDataSetChanged() + + if (activeSpeakerIds.contains(viewModel.roomInfoResponse.creatorId.toInt())) { + binding.ivCreatorProfileBg.visibility = View.VISIBLE + } else { + binding.ivCreatorProfileBg.visibility = View.GONE + } } } diff --git a/app/src/main/res/layout/activity_live_room.xml b/app/src/main/res/layout/activity_live_room.xml index 98598ff..4236f8e 100644 --- a/app/src/main/res/layout/activity_live_room.xml +++ b/app/src/main/res/layout/activity_live_room.xml @@ -135,6 +135,13 @@ android:layout_centerVertical="true" android:contentDescription="@null" /> + +