추천 채널 더보기 문자열 리소스화

This commit is contained in:
2025-12-03 22:37:09 +09:00
parent 81b6cbe655
commit fc984cef22
4 changed files with 6 additions and 1 deletions

View File

@@ -25,7 +25,9 @@ class LiveRecommendChannelAdapter(
) : RecyclerView.ViewHolder(binding.root) {
fun bind() {
binding.ivRecommendChannel.setImageResource(R.drawable.btn_item_more)
binding.tvRecommendChannelNickname.text = "더보기"
binding.tvRecommendChannelNickname.text = binding.root.context.getString(
R.string.screen_live_recommend_channel_more
)
val layoutParams = binding.ivRecommendChannel.layoutParams as FrameLayout.LayoutParams
layoutParams.width = 60f.dpToPx().toInt()