콘텐츠 메인 새로운 단편 전체보기 제목 변경
- 무료 콘텐츠 조회시 -> 새로운 무료 콘텐츠 - 기본 -> 새로운 단편
This commit is contained in:
parent
63646b0d19
commit
3a7df3f16e
|
@ -46,9 +46,19 @@ class AudioContentNewAllActivity : BaseActivity<ActivityAudioContentNewAllBindin
|
||||||
|
|
||||||
override fun setupView() {
|
override fun setupView() {
|
||||||
loadingDialog = LoadingDialog(this, layoutInflater)
|
loadingDialog = LoadingDialog(this, layoutInflater)
|
||||||
binding.toolbar.tvBack.text = "새로운 콘텐츠"
|
binding.toolbar.tvBack.text = if (isFree) {
|
||||||
|
"새로운 무료 콘텐츠"
|
||||||
|
} else {
|
||||||
|
"새로운 단편"
|
||||||
|
}
|
||||||
binding.toolbar.tvBack.setOnClickListener { finish() }
|
binding.toolbar.tvBack.setOnClickListener { finish() }
|
||||||
|
|
||||||
|
binding.tvNotice.text = if (isFree) {
|
||||||
|
"※ 최근 2주간 등록된 새로운 무료 콘텐츠 입니다."
|
||||||
|
} else {
|
||||||
|
"※ 최근 2주간 등록된 새로운 단편 입니다."
|
||||||
|
}
|
||||||
|
|
||||||
setupNewContentTheme()
|
setupNewContentTheme()
|
||||||
setupNewContent()
|
setupNewContent()
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,6 +11,7 @@
|
||||||
layout="@layout/detail_toolbar" />
|
layout="@layout/detail_toolbar" />
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
|
android:id="@+id/tv_notice"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="13.3dp"
|
android:layout_marginTop="13.3dp"
|
||||||
|
|
Loading…
Reference in New Issue