콘텐츠 리스트, 라이브 중 전체보기

- 그리드 아이템 사이 간격 수정
This commit is contained in:
2024-03-14 18:46:22 +09:00
parent 0e131f6661
commit c2cf05ef64
4 changed files with 4 additions and 4 deletions

View File

@@ -49,7 +49,7 @@ class LiveNowAllActivity : BaseActivity<ActivityLiveNowAllBinding>(
val spanCount = 3
val spacing = 40
val recyclerView = binding.rvLive
adapter = LiveNowAllAdapter(itemWidth = (screenWidth - (spacing * spanCount)) / 3) {
adapter = LiveNowAllAdapter(itemWidth = (screenWidth - (spacing * (spanCount + 1))) / 3) {
val detailFragment = LiveRoomDetailFragment(
it.roomId,
onClickParticipant = { enterLiveRoom(it.roomId) },