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

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) { ) : RecyclerView.ViewHolder(binding.root) {
fun bind() { fun bind() {
binding.ivRecommendChannel.setImageResource(R.drawable.btn_item_more) 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 val layoutParams = binding.ivRecommendChannel.layoutParams as FrameLayout.LayoutParams
layoutParams.width = 60f.dpToPx().toInt() layoutParams.width = 60f.dpToPx().toInt()

View File

@@ -126,6 +126,7 @@
<string name="screen_live_now_all_free">Free</string> <string name="screen_live_now_all_free">Free</string>
<string name="screen_live_now_all_remaining">Left</string> <string name="screen_live_now_all_remaining">Left</string>
<string name="screen_live_now_all_sold_out">Sold out</string> <string name="screen_live_now_all_sold_out">Sold out</string>
<string name="screen_live_recommend_channel_more">More</string>
<string name="famous_creator">Popular creators</string> <string name="famous_creator">Popular creators</string>
<string name="latest_content">Latest content</string> <string name="latest_content">Latest content</string>
<string name="view_all">View all</string> <string name="view_all">View all</string>

View File

@@ -126,6 +126,7 @@
<string name="screen_live_now_all_free">無料</string> <string name="screen_live_now_all_free">無料</string>
<string name="screen_live_now_all_remaining">残り</string> <string name="screen_live_now_all_remaining">残り</string>
<string name="screen_live_now_all_sold_out">完売</string> <string name="screen_live_now_all_sold_out">完売</string>
<string name="screen_live_recommend_channel_more">もっと見る</string>
<string name="famous_creator">人気クリエイター</string> <string name="famous_creator">人気クリエイター</string>
<string name="latest_content">最新コンテンツ</string> <string name="latest_content">最新コンテンツ</string>
<string name="view_all">すべて見る</string> <string name="view_all">すべて見る</string>

View File

@@ -125,6 +125,7 @@
<string name="screen_live_now_all_free">무료</string> <string name="screen_live_now_all_free">무료</string>
<string name="screen_live_now_all_remaining">잔여</string> <string name="screen_live_now_all_remaining">잔여</string>
<string name="screen_live_now_all_sold_out">Sold out</string> <string name="screen_live_now_all_sold_out">Sold out</string>
<string name="screen_live_recommend_channel_more">더보기</string>
<string name="famous_creator">인기 크리에이터</string> <string name="famous_creator">인기 크리에이터</string>
<string name="latest_content">최신 콘텐츠</string> <string name="latest_content">최신 콘텐츠</string>
<string name="view_all">전체보기</string> <string name="view_all">전체보기</string>