콘텐츠 메인 새로운 단편 전체보기 제목 변경

- 무료 콘텐츠 조회시 -> 새로운 무료 콘텐츠
- 기본 -> 새로운 단편
This commit is contained in:
klaus 2025-02-22 11:44:32 +09:00
parent 63646b0d19
commit 3a7df3f16e
2 changed files with 12 additions and 1 deletions

View File

@ -46,9 +46,19 @@ class AudioContentNewAllActivity : BaseActivity<ActivityAudioContentNewAllBindin
override fun setupView() {
loadingDialog = LoadingDialog(this, layoutInflater)
binding.toolbar.tvBack.text = "새로운 콘텐츠"
binding.toolbar.tvBack.text = if (isFree) {
"새로운 무료 콘텐츠"
} else {
"새로운 단편"
}
binding.toolbar.tvBack.setOnClickListener { finish() }
binding.tvNotice.text = if (isFree) {
"※ 최근 2주간 등록된 새로운 무료 콘텐츠 입니다."
} else {
"※ 최근 2주간 등록된 새로운 단편 입니다."
}
setupNewContentTheme()
setupNewContent()
}

View File

@ -11,6 +11,7 @@
layout="@layout/detail_toolbar" />
<TextView
android:id="@+id/tv_notice"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="13.3dp"