fix(home): 팔로잉 라이브 카드 레이아웃을 보정한다

This commit is contained in:
2026-07-12 03:47:55 +09:00
parent c883556dbf
commit 9b2666e671

View File

@@ -21,9 +21,14 @@ class HomeFollowingLiveAdapter(
}
override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): LiveViewHolder {
val view = LayoutInflater.from(parent.context).inflate(R.layout.item_home_following_live, parent, false)
view.layoutParams = recyclerItemLayoutParams(parent)
return LiveViewHolder(view, onClickItem)
return LiveViewHolder(
LayoutInflater.from(parent.context).inflate(
R.layout.item_home_following_live,
parent,
false
),
onClickItem
)
}
override fun onBindViewHolder(holder: LiveViewHolder, position: Int) {