parent
c79eb90500
commit
0180a384e1
|
@ -35,7 +35,7 @@ android {
|
|||
applicationId "kr.co.vividnext.sodalive"
|
||||
minSdk 23
|
||||
targetSdk 34
|
||||
versionCode 144
|
||||
versionCode 145
|
||||
versionName "1.28.0"
|
||||
}
|
||||
|
||||
|
|
|
@ -7,7 +7,6 @@ import android.view.View
|
|||
import androidx.core.content.ContextCompat
|
||||
import androidx.core.content.res.ResourcesCompat
|
||||
import com.google.android.material.chip.Chip
|
||||
import com.google.android.material.chip.ChipGroup
|
||||
import com.google.android.material.shape.ShapeAppearanceModel
|
||||
import kr.co.vividnext.sodalive.R
|
||||
import kr.co.vividnext.sodalive.base.BaseFragment
|
||||
|
@ -54,12 +53,12 @@ class SeriesDetailIntroductionFragment : BaseFragment<FragmentSeriesDetailIntrod
|
|||
|
||||
binding.tvRentalPrice.text = if (rentalMinPrice == rentalMaxPrice) {
|
||||
if (rentalMaxPrice == 0) {
|
||||
"무료(15일)"
|
||||
"무료(5일)"
|
||||
} else {
|
||||
"$rentalMaxPrice(15일)"
|
||||
"$rentalMaxPrice(5일)"
|
||||
}
|
||||
} else {
|
||||
"${if (rentalMinPrice == 0) "무료" else rentalMinPrice} ~ ${rentalMaxPrice}캔 (15일)"
|
||||
"${if (rentalMinPrice == 0) "무료" else rentalMinPrice} ~ ${rentalMaxPrice}캔 (5일)"
|
||||
}
|
||||
|
||||
binding.tvPrice.text = if (minPrice == maxPrice) {
|
||||
|
|
|
@ -155,9 +155,9 @@ class AudioContentUploadActivity : BaseActivity<ActivityAudioContentUploadBindin
|
|||
loadingDialog = LoadingDialog(this, layoutInflater)
|
||||
|
||||
binding.tvServiceDate.text = if (SharedPreferenceManager.userId == 17958L) {
|
||||
"※ 이용기간 : 대여(15일) | 소장(이용 기간 1년)"
|
||||
"※ 이용기간 : 대여(5일) | 소장(이용 기간 1년)"
|
||||
} else {
|
||||
"※ 이용기간 : 대여(15일) | 소장(서비스 종료시까지)"
|
||||
"※ 이용기간 : 대여(5일) | 소장(서비스 종료시까지)"
|
||||
}
|
||||
binding.toolbar.tvBack.text = "콘텐츠 등록"
|
||||
binding.toolbar.tvBack.setOnClickListener { finish() }
|
||||
|
|
|
@ -540,7 +540,7 @@
|
|||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:fontFamily="@font/gmarket_sans_medium"
|
||||
android:text="※ 이용기간 : 대여(15일) | 소장(서비스 종료시까지)"
|
||||
android:text="※ 이용기간 : 대여(5일) | 소장(서비스 종료시까지)"
|
||||
android:textColor="@color/color_777777"
|
||||
android:textSize="13.3sp" />
|
||||
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:fontFamily="@font/gmarket_sans_light"
|
||||
android:text="(이용기간 15일)"
|
||||
android:text="(이용기간 5일)"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="12sp" />
|
||||
</LinearLayout>
|
||||
|
|
|
@ -254,7 +254,7 @@
|
|||
android:fontFamily="@font/gmarket_sans_medium"
|
||||
android:textColor="@color/color_3bb9f1"
|
||||
android:textSize="14.7sp"
|
||||
tools:text="무료 ~ 300캔 (15일)" />
|
||||
tools:text="무료 ~ 300캔 (5일)" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_price"
|
||||
|
|
Loading…
Reference in New Issue