coin -> can,

코인 -> 캔

으로 변경
This commit is contained in:
klaus 2023-08-14 11:15:21 +09:00
parent 5e44949094
commit 999f90ae80
39 changed files with 116 additions and 116 deletions

View File

@ -30,34 +30,34 @@ class AudioContentCommentAdapter(
} }
val tvCommentLayoutParams = binding.tvComment.layoutParams as LinearLayout.LayoutParams val tvCommentLayoutParams = binding.tvComment.layoutParams as LinearLayout.LayoutParams
val coin = item.donationCoin val can = item.donationCan
if (coin > 0) { if (can > 0) {
tvCommentLayoutParams.topMargin = 0 tvCommentLayoutParams.topMargin = 0
binding.llDonationCoin.visibility = View.VISIBLE binding.llDonationCan.visibility = View.VISIBLE
binding.tvDonationCoin.text = coin.moneyFormat() binding.tvDonationCan.text = can.moneyFormat()
binding.llDonationCoin.setBackgroundResource( binding.llDonationCan.setBackgroundResource(
when { when {
coin >= 100000 -> { can >= 100000 -> {
R.drawable.bg_round_corner_10_7_973a3a R.drawable.bg_round_corner_10_7_973a3a
} }
coin >= 50000 -> { can >= 50000 -> {
R.drawable.bg_round_corner_10_7_d85e37 R.drawable.bg_round_corner_10_7_d85e37
} }
coin >= 10000 -> { can >= 10000 -> {
R.drawable.bg_round_corner_10_7_d38c38 R.drawable.bg_round_corner_10_7_d38c38
} }
coin >= 5000 -> { can >= 5000 -> {
R.drawable.bg_round_corner_10_7_59548f R.drawable.bg_round_corner_10_7_59548f
} }
coin >= 1000 -> { can >= 1000 -> {
R.drawable.bg_round_corner_10_7_4d6aa4 R.drawable.bg_round_corner_10_7_4d6aa4
} }
coin >= 500 -> { can >= 500 -> {
R.drawable.bg_round_corner_10_7_2d7390 R.drawable.bg_round_corner_10_7_2d7390
} }
@ -68,7 +68,7 @@ class AudioContentCommentAdapter(
) )
} else { } else {
tvCommentLayoutParams.topMargin = 13.3f.dpToPx().toInt() tvCommentLayoutParams.topMargin = 13.3f.dpToPx().toInt()
binding.llDonationCoin.visibility = View.GONE binding.llDonationCan.visibility = View.GONE
} }
binding.tvComment.layoutParams = tvCommentLayoutParams binding.tvComment.layoutParams = tvCommentLayoutParams

View File

@ -15,7 +15,7 @@ data class GetAudioContentCommentListItem(
@SerializedName("nickname") val nickname: String, @SerializedName("nickname") val nickname: String,
@SerializedName("profileUrl") val profileUrl: String, @SerializedName("profileUrl") val profileUrl: String,
@SerializedName("comment") val comment: String, @SerializedName("comment") val comment: String,
@SerializedName("donationCoin") val donationCoin: Int, @SerializedName("donationCan") val donationCan: Int,
@SerializedName("date") val date: String, @SerializedName("date") val date: String,
@SerializedName("replyCount") val replyCount: Int @SerializedName("replyCount") val replyCount: Int
) : Parcelable ) : Parcelable

View File

@ -248,7 +248,7 @@ class AudioContentDetailActivity : BaseActivity<ActivityAudioContentDetailBindin
LayoutInflater.from(this) LayoutInflater.from(this)
) { can, message -> ) { can, message ->
if (can <= 0) { if (can <= 0) {
showToast("1코인 이상 후원하실 수 있습니다.") showToast("1 이상 후원하실 수 있습니다.")
} else if (message.isBlank()) { } else if (message.isBlank()) {
showToast("함께 보낼 메시지를 입력하세요.") showToast("함께 보낼 메시지를 입력하세요.")
} else { } else {
@ -260,8 +260,8 @@ class AudioContentDetailActivity : BaseActivity<ActivityAudioContentDetailBindin
} }
} }
private fun donation(coin: Int, message: String) { private fun donation(can: Int, message: String) {
viewModel.donation(audioContentId, coin, message) { viewModel.donation(audioContentId, can, message) {
viewModel.getAudioContentDetail(audioContentId = audioContentId) { finish() } viewModel.getAudioContentDetail(audioContentId = audioContentId) { finish() }
} }
} }

View File

@ -72,9 +72,9 @@ class AudioContentOrderConfirmDialog(
} }
dialogView.tvNotice.text = if (orderType == OrderType.RENTAL) { dialogView.tvNotice.text = if (orderType == OrderType.RENTAL) {
"콘텐츠를 대여하시겠습니까?\n아래 코인이 차감됩니다." "콘텐츠를 대여하시겠습니까?\n아래 이 차감됩니다."
} else { } else {
"콘텐츠를 소장하시겠습니까?\n아래 코인이 차감됩니다." "콘텐츠를 소장하시겠습니까?\n아래 이 차감됩니다."
} }
dialogView.tvCancel.setOnClickListener { dialogView.tvCancel.setOnClickListener {

View File

@ -212,7 +212,7 @@ class AudioContentUploadViewModel(
} }
if (!isPriceFreeLiveData.value!! && price < 10) { if (!isPriceFreeLiveData.value!! && price < 10) {
_toastLiveData.postValue("콘텐츠의 최소금액은 10코인 입니다.") _toastLiveData.postValue("콘텐츠의 최소금액은 10 입니다.")
return false return false
} }

View File

@ -42,7 +42,7 @@ data class UserDonationRankingResponse(
@SerializedName("userId") val userId: Long, @SerializedName("userId") val userId: Long,
@SerializedName("nickname") val nickname: String, @SerializedName("nickname") val nickname: String,
@SerializedName("profileImage") val profileImage: String, @SerializedName("profileImage") val profileImage: String,
@SerializedName("donationCoin") val donationCoin: Int @SerializedName("donationCan") val donationCan: Int
) )
data class SimilarCreatorResponse( data class SimilarCreatorResponse(

View File

@ -13,5 +13,5 @@ data class MakeLiveReservationResponse(
@SerializedName("price") val price: String, @SerializedName("price") val price: String,
@SerializedName("haveCan") val haveCan: Int, @SerializedName("haveCan") val haveCan: Int,
@SerializedName("useCan") val useCan: Int, @SerializedName("useCan") val useCan: Int,
@SerializedName("remainingCoin") val remainingCoin: Int @SerializedName("remainingCan") val remainingCan: Int
) : Parcelable ) : Parcelable

View File

@ -34,9 +34,9 @@ class LiveReservationCompleteActivity : BaseActivity<ActivityLiveReservationComp
binding.tvDate.text = response.beginDateString binding.tvDate.text = response.beginDateString
binding.tvPrice.text = response.price binding.tvPrice.text = response.price
binding.tvHaveCoin.text = "${response.haveCan}" binding.tvHaveCan.text = "${response.haveCan}"
binding.tvUseCoin.text = "${response.useCan}" binding.tvUseCan.text = "${response.useCan}"
binding.tvRemainingCoin.text = "${response.remainingCoin}" binding.tvRemainingCan.text = "${response.remainingCan}"
binding.tvGoHome.setOnClickListener { binding.tvGoHome.setOnClickListener {
val intent = Intent(applicationContext, MainActivity::class.java) val intent = Intent(applicationContext, MainActivity::class.java)

View File

@ -113,7 +113,7 @@ class LiveReservationCancelActivity : BaseActivity<ActivityLiveReservationCancel
startActivity(Intent(applicationContext, MainActivity::class.java)) startActivity(Intent(applicationContext, MainActivity::class.java))
} }
binding.tvCheckCoinStatus.setOnClickListener { binding.tvCheckCanStatus.setOnClickListener {
startActivity(Intent(applicationContext, CanStatusActivity::class.java)) startActivity(Intent(applicationContext, CanStatusActivity::class.java))
} }
@ -152,10 +152,10 @@ class LiveReservationCancelActivity : BaseActivity<ActivityLiveReservationCancel
} }
if (response.price > 0) { if (response.price > 0) {
binding.tvCheckCoinStatus.visibility = View.VISIBLE binding.tvCheckCanStatus.visibility = View.VISIBLE
binding.tvPrice.text = "${response.price}코인" binding.tvPrice.text = "${response.price}"
} else { } else {
binding.tvCheckCoinStatus.visibility = View.GONE binding.tvCheckCanStatus.visibility = View.GONE
binding.tvPrice.text = "무료" binding.tvPrice.text = "무료"
} }
} }

View File

@ -31,7 +31,7 @@ class LiveReservationStatusAdapter(
} }
binding.tvPrice.text = if (item.price > 0) { binding.tvPrice.text = if (item.price > 0) {
"${item.price}코인" "${item.price}"
} else { } else {
"무료" "무료"
} }

View File

@ -233,7 +233,7 @@ data class LiveRoomNormalChat(
} else { } else {
itemBinding.llMessageBg.setBackgroundResource(R.drawable.bg_round_corner_3_3_99000000) itemBinding.llMessageBg.setBackgroundResource(R.drawable.bg_round_corner_3_3_99000000)
} }
itemBinding.ivCoin.visibility = View.GONE itemBinding.ivCan.visibility = View.GONE
itemBinding.tvDonationMessage.visibility = View.GONE itemBinding.tvDonationMessage.visibility = View.GONE
itemBinding.root.setBackgroundResource(0) itemBinding.root.setBackgroundResource(0)
itemBinding.root.setPadding(0) itemBinding.root.setPadding(0)
@ -244,7 +244,7 @@ data class LiveRoomDonationChat(
@SerializedName("profileUrl") val profileUrl: String, @SerializedName("profileUrl") val profileUrl: String,
@SerializedName("nickname") val nickname: String, @SerializedName("nickname") val nickname: String,
@SerializedName("chat") val chat: String, @SerializedName("chat") val chat: String,
@SerializedName("coin") val coin: Int, @SerializedName("can") val can: Int,
@SerializedName("donationMessage") val donationMessage: String, @SerializedName("donationMessage") val donationMessage: String,
) : LiveRoomChat() { ) : LiveRoomChat() {
@SuppressLint("SetTextI18n") @SuppressLint("SetTextI18n")
@ -285,7 +285,7 @@ data class LiveRoomDonationChat(
itemBinding.tvNickname.text = spNickname itemBinding.tvNickname.text = spNickname
itemBinding.ivProfile.setOnClickListener {} itemBinding.ivProfile.setOnClickListener {}
itemBinding.ivCoin.visibility = View.VISIBLE itemBinding.ivCan.visibility = View.VISIBLE
itemBinding.ivBg.visibility = View.GONE itemBinding.ivBg.visibility = View.GONE
itemBinding.ivCrown.visibility = View.GONE itemBinding.ivCrown.visibility = View.GONE
itemBinding.tvCreatorOrManager.visibility = View.GONE itemBinding.tvCreatorOrManager.visibility = View.GONE
@ -302,27 +302,27 @@ data class LiveRoomDonationChat(
itemBinding.root.setBackgroundResource( itemBinding.root.setBackgroundResource(
when { when {
coin >= 100000 -> { can >= 100000 -> {
R.drawable.bg_round_corner_6_7_c25264 R.drawable.bg_round_corner_6_7_c25264
} }
coin >= 50000 -> { can >= 50000 -> {
R.drawable.bg_round_corner_6_7_e6d85e37 R.drawable.bg_round_corner_6_7_e6d85e37
} }
coin >= 10000 -> { can >= 10000 -> {
R.drawable.bg_round_corner_6_7_e6d38c38 R.drawable.bg_round_corner_6_7_e6d38c38
} }
coin >= 5000 -> { can >= 5000 -> {
R.drawable.bg_round_corner_6_7_e659548f R.drawable.bg_round_corner_6_7_e659548f
} }
coin >= 1000 -> { can >= 1000 -> {
R.drawable.bg_round_corner_6_7_e64d6aa4 R.drawable.bg_round_corner_6_7_e64d6aa4
} }
coin >= 500 -> { can >= 500 -> {
R.drawable.bg_round_corner_6_7_e62d7390 R.drawable.bg_round_corner_6_7_e62d7390
} }

View File

@ -152,16 +152,16 @@ class LiveRoomDetailFragment(
} }
if (response.price > 0) { if (response.price > 0) {
binding.tvCoin.text = response.price.toString() binding.tvCan.text = response.price.toString()
binding.tvCoin.setCompoundDrawablesWithIntrinsicBounds( binding.tvCan.setCompoundDrawablesWithIntrinsicBounds(
0, 0,
0, 0,
R.drawable.ic_can, R.drawable.ic_can,
0 0
) )
} else { } else {
binding.tvCoin.text = "무료" binding.tvCan.text = "무료"
binding.tvCoin.setCompoundDrawablesWithIntrinsicBounds( binding.tvCan.setCompoundDrawablesWithIntrinsicBounds(
0, 0,
0, 0,
0, 0,

View File

@ -36,11 +36,11 @@ class LiveRoomPasswordDialog(
alertDialog.window?.setBackgroundDrawable(ColorDrawable(Color.TRANSPARENT)) alertDialog.window?.setBackgroundDrawable(ColorDrawable(Color.TRANSPARENT))
if (can > 0) { if (can > 0) {
dialogView.tvCoin.visibility = View.VISIBLE dialogView.tvCan.visibility = View.VISIBLE
dialogView.tvCoin.text = can.moneyFormat() dialogView.tvCan.text = can.moneyFormat()
dialogView.tvConfirm.text = "으로 입장" dialogView.tvConfirm.text = "으로 입장"
} else { } else {
dialogView.tvCoin.visibility = View.GONE dialogView.tvCan.visibility = View.GONE
dialogView.tvConfirm.text = "입장하기" dialogView.tvConfirm.text = "입장하기"
} }

View File

@ -35,23 +35,23 @@ class LiveRoomDonationDialog(
dialogView.tvCancel.setOnClickListener { bottomSheetDialog.dismiss() } dialogView.tvCancel.setOnClickListener { bottomSheetDialog.dismiss() }
dialogView.tvDonation.setOnClickListener { dialogView.tvDonation.setOnClickListener {
try { try {
val coin = dialogView.etDonationCoin.text.toString().toInt() val can = dialogView.etDonationCan.text.toString().toInt()
val message = dialogView.etDonationMessage.text.toString() val message = dialogView.etDonationMessage.text.toString()
if (coin > 0) { if (can > 0) {
bottomSheetDialog.dismiss() bottomSheetDialog.dismiss()
onClickDonation(coin, message) onClickDonation(can, message)
} else { } else {
Toast.makeText( Toast.makeText(
activity, activity,
"1코인 이상 후원하실 수 있습니다.", "1 이상 후원하실 수 있습니다.",
Toast.LENGTH_LONG Toast.LENGTH_LONG
).show() ).show()
} }
} catch (e: NumberFormatException) { } catch (e: NumberFormatException) {
Toast.makeText( Toast.makeText(
activity, activity,
"1코인 이상 후원하실 수 있습니다.", "1 이상 후원하실 수 있습니다.",
Toast.LENGTH_LONG Toast.LENGTH_LONG
).show() ).show()
} }
@ -75,11 +75,11 @@ class LiveRoomDonationDialog(
@SuppressLint("SetTextI18n") @SuppressLint("SetTextI18n")
private fun setupView() { private fun setupView() {
dialogView.tvCoin.text = SharedPreferenceManager.can.moneyFormat() dialogView.tvCan.text = SharedPreferenceManager.can.moneyFormat()
dialogView.tvPlus10.setOnClickListener { addCoin(10) } dialogView.tvPlus10.setOnClickListener { addCan(10) }
dialogView.tvPlus100.setOnClickListener { addCoin(100) } dialogView.tvPlus100.setOnClickListener { addCan(100) }
dialogView.tvPlus1000.setOnClickListener { addCoin(1000) } dialogView.tvPlus1000.setOnClickListener { addCan(1000) }
dialogView.tvPlus10000.setOnClickListener { addCoin(10000) } dialogView.tvPlus10000.setOnClickListener { addCan(10000) }
dialogView.ivProfile.load(SharedPreferenceManager.profileImage) { dialogView.ivProfile.load(SharedPreferenceManager.profileImage) {
crossfade(true) crossfade(true)
@ -87,7 +87,7 @@ class LiveRoomDonationDialog(
transformations(CircleCropTransformation()) transformations(CircleCropTransformation())
} }
dialogView.tvCoin.setOnClickListener { dialogView.tvCan.setOnClickListener {
bottomSheetDialog.dismiss() bottomSheetDialog.dismiss()
val intent = Intent(activity, CanChargeActivity::class.java) val intent = Intent(activity, CanChargeActivity::class.java)
@ -97,12 +97,12 @@ class LiveRoomDonationDialog(
} }
@SuppressLint("SetTextI18n") @SuppressLint("SetTextI18n")
private fun addCoin(coin: Int) { private fun addCan(can: Int) {
try { try {
val currentCoin = dialogView.etDonationCoin.text.toString().toInt() val currentCan = dialogView.etDonationCan.text.toString().toInt()
dialogView.etDonationCoin.setText((currentCoin + coin).toString()) dialogView.etDonationCan.setText((currentCan + can).toString())
} catch (e: NumberFormatException) { } catch (e: NumberFormatException) {
dialogView.etDonationCoin.setText(coin.toString()) dialogView.etDonationCan.setText(can.toString())
} }
} }
} }

View File

@ -21,7 +21,7 @@ class LiveRoomDonationMessageAdapter(
@SuppressLint("SetTextI18n") @SuppressLint("SetTextI18n")
fun bind(item: LiveRoomDonationMessage) { fun bind(item: LiveRoomDonationMessage) {
binding.tvNickname.text = "${item.nickname}님이" binding.tvNickname.text = "${item.nickname}님이"
binding.tvCoinMessage.text = item.canMessage binding.tvCanMessage.text = item.canMessage
binding.tvDonationMessage.text = "\"${item.donationMessage}\"" binding.tvDonationMessage.text = "\"${item.donationMessage}\""
binding.ivDelete.setOnClickListener { onClickDeleteMessage(item.uuid) } binding.ivDelete.setOnClickListener { onClickDeleteMessage(item.uuid) }

View File

@ -35,7 +35,7 @@ class LiveRoomDonationRankingDialog(
adapter.items.clear() adapter.items.clear()
adapter.items.addAll(it.donationList) adapter.items.addAll(it.donationList)
adapter.notifyDataSetChanged() adapter.notifyDataSetChanged()
dialogView.tvTotalCoin.text = it.totalCan.moneyFormat() dialogView.tvTotalCan.text = it.totalCan.moneyFormat()
dialogView.tvTotalCount.text = it.totalCount.moneyFormat() dialogView.tvTotalCount.text = it.totalCount.moneyFormat()
} }
} }

View File

@ -207,7 +207,7 @@ class CanPaymentActivity : BaseActivity<ActivityCanPaymentBinding>(
viewModel.verify( viewModel.verify(
request, request,
onSuccess = { onSuccess = {
Toast.makeText(applicationContext, "코인이 충전되었습니다", Toast.LENGTH_LONG).show() Toast.makeText(applicationContext, "이 충전되었습니다", Toast.LENGTH_LONG).show()
if (prevLiveRoom) { if (prevLiveRoom) {
setResult(RESULT_OK) setResult(RESULT_OK)
} else { } else {

View File

@ -425,7 +425,7 @@
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:fontFamily="@font/gmarket_sans_light" android:fontFamily="@font/gmarket_sans_light"
android:text="코인으로" android:text="으로"
android:textColor="@color/white" android:textColor="@color/white"
android:textSize="12sp" /> android:textSize="12sp" />

View File

@ -417,7 +417,7 @@
android:layout_alignParentEnd="true" android:layout_alignParentEnd="true"
android:layout_centerVertical="true" android:layout_centerVertical="true"
android:fontFamily="@font/gmarket_sans_medium" android:fontFamily="@font/gmarket_sans_medium"
android:text="코인" android:text=""
android:textColor="@color/color_777777" android:textColor="@color/color_777777"
android:textSize="13.3sp" /> android:textSize="13.3sp" />
</RelativeLayout> </RelativeLayout>
@ -450,7 +450,7 @@
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_marginTop="3dp" android:layout_marginTop="3dp"
android:fontFamily="@font/gmarket_sans_medium" android:fontFamily="@font/gmarket_sans_medium"
android:text="※ 콘텐츠의 최소금액은 10코인 입니다" android:text="※ 콘텐츠의 최소금액은 10 입니다"
android:textColor="@color/color_777777" android:textColor="@color/color_777777"
android:textSize="13.3sp" /> android:textSize="13.3sp" />
</LinearLayout> </LinearLayout>

View File

@ -55,7 +55,7 @@
app:layout_constraintBottom_toBottomOf="@+id/ic_can" app:layout_constraintBottom_toBottomOf="@+id/ic_can"
app:layout_constraintStart_toEndOf="@+id/ic_can" app:layout_constraintStart_toEndOf="@+id/ic_can"
app:layout_constraintTop_toTopOf="@+id/ic_can" app:layout_constraintTop_toTopOf="@+id/ic_can"
tools:text="5000 코인 + 1000 코인" /> tools:text="5000 캔 + 1000 캔" />
<LinearLayout <LinearLayout
android:id="@+id/ll_price" android:id="@+id/ll_price"
@ -151,7 +151,7 @@
android:layout_marginHorizontal="26.7dp" android:layout_marginHorizontal="26.7dp"
android:layout_marginTop="13.3dp" android:layout_marginTop="13.3dp"
android:fontFamily="@font/gmarket_sans_medium" android:fontFamily="@font/gmarket_sans_medium"
android:text="- 충전된 코인의 유효기간은 충전 후 5년 입니다.\n- 결제 취소는 결제 후 7일 이내에만 할 수 있습니다.\n 단, 코인의 일부를 사용하면 결제 취소할 수 없습니다.\n- 광고성 이벤트 등 회사가 무료로 지급한 \n포인트는 환불되지 않습니다.\n- 자세한 내용은 요즘 이용약관에서 확인할 수 있습니다." android:text="- 충전된 의 유효기간은 충전 후 5년 입니다.\n- 결제 취소는 결제 후 7일 이내에만 할 수 있습니다.\n 단, 의 일부를 사용하면 결제 취소할 수 없습니다.\n- 광고성 이벤트 등 회사가 무료로 지급한 \n포인트는 환불되지 않습니다.\n- 자세한 내용은 요즘 이용약관에서 확인할 수 있습니다."
android:textColor="@color/color_777777" android:textColor="@color/color_777777"
android:textSize="12sp" /> android:textSize="12sp" />
</LinearLayout> </LinearLayout>

View File

@ -60,7 +60,7 @@
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_centerHorizontal="true" android:layout_centerHorizontal="true"
android:fontFamily="@font/gmarket_sans_light" android:fontFamily="@font/gmarket_sans_light"
android:text="결제 코인" android:text="결제 "
android:textColor="@color/color_777777" android:textColor="@color/color_777777"
android:textSize="12sp" /> android:textSize="12sp" />

View File

@ -90,7 +90,7 @@
android:fontFamily="@font/gmarket_sans_medium" android:fontFamily="@font/gmarket_sans_medium"
android:textColor="@color/color_7fe2e2e2" android:textColor="@color/color_7fe2e2e2"
android:textSize="12sp" android:textSize="12sp"
tools:text="300코인" /> tools:text="300" />
<TextView <TextView
android:id="@+id/tv_non_cancellable" android:id="@+id/tv_non_cancellable"
@ -259,7 +259,7 @@
android:layout_marginHorizontal="23.3dp" android:layout_marginHorizontal="23.3dp"
android:layout_marginTop="13.3dp" android:layout_marginTop="13.3dp"
android:fontFamily="@font/gmarket_sans_medium" android:fontFamily="@font/gmarket_sans_medium"
android:text="취소요청시, 차감했던 코인은 환불처리 됩니다. 라이브 참여인원 제한에 따라 재예약이 불가할 수 있습니다." android:text="취소요청시, 차감했던 은 환불처리 됩니다. 라이브 참여인원 제한에 따라 재예약이 불가할 수 있습니다."
android:textColor="@color/color_ff5c49" /> android:textColor="@color/color_ff5c49" />
<TextView <TextView
@ -304,7 +304,7 @@
android:fontFamily="@font/gmarket_sans_medium" android:fontFamily="@font/gmarket_sans_medium"
android:textColor="@color/color_eeeeee" android:textColor="@color/color_eeeeee"
android:textSize="20sp" android:textSize="20sp"
tools:text="결제한 500코인이\n환불처리 되었습니다." /> tools:text="결제한 500이\n환불처리 되었습니다." />
<LinearLayout <LinearLayout
android:layout_width="match_parent" android:layout_width="match_parent"
@ -328,7 +328,7 @@
android:textSize="15sp" /> android:textSize="15sp" />
<TextView <TextView
android:id="@+id/tv_check_coin_status" android:id="@+id/tv_check_can_status"
android:layout_width="0dp" android:layout_width="0dp"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_weight="1" android:layout_weight="1"
@ -336,7 +336,7 @@
android:fontFamily="@font/gmarket_sans_bold" android:fontFamily="@font/gmarket_sans_bold"
android:gravity="center" android:gravity="center"
android:paddingVertical="16dp" android:paddingVertical="16dp"
android:text="코인내역 확인하기" android:text="내역 확인하기"
android:textColor="@color/white" android:textColor="@color/white"
android:textSize="15sp" /> android:textSize="15sp" />
</LinearLayout> </LinearLayout>

View File

@ -194,7 +194,7 @@
tools:ignore="RelativeOverlap"> tools:ignore="RelativeOverlap">
<TextView <TextView
android:id="@+id/tv_have_coin" android:id="@+id/tv_have_can"
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:fontFamily="@font/gmarket_sans_bold" android:fontFamily="@font/gmarket_sans_bold"
@ -237,7 +237,7 @@
tools:ignore="RelativeOverlap"> tools:ignore="RelativeOverlap">
<TextView <TextView
android:id="@+id/tv_use_coin" android:id="@+id/tv_use_can"
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:fontFamily="@font/gmarket_sans_bold" android:fontFamily="@font/gmarket_sans_bold"
@ -280,7 +280,7 @@
tools:ignore="RelativeOverlap"> tools:ignore="RelativeOverlap">
<TextView <TextView
android:id="@+id/tv_remaining_coin" android:id="@+id/tv_remaining_can"
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:fontFamily="@font/gmarket_sans_bold" android:fontFamily="@font/gmarket_sans_bold"

View File

@ -653,7 +653,7 @@
android:fontFamily="@font/gmarket_sans_bold" android:fontFamily="@font/gmarket_sans_bold"
android:gravity="center" android:gravity="center"
android:paddingVertical="16.7dp" android:paddingVertical="16.7dp"
android:text="100 코인" android:text="100 "
android:textColor="@color/color_9970ff" android:textColor="@color/color_9970ff"
android:textSize="14.7sp" /> android:textSize="14.7sp" />
@ -666,7 +666,7 @@
android:fontFamily="@font/gmarket_sans_bold" android:fontFamily="@font/gmarket_sans_bold"
android:gravity="center" android:gravity="center"
android:paddingVertical="16.7dp" android:paddingVertical="16.7dp"
android:text="300 코인" android:text="300 "
android:textColor="@color/color_9970ff" android:textColor="@color/color_9970ff"
android:textSize="14.7sp" /> android:textSize="14.7sp" />
</LinearLayout> </LinearLayout>
@ -687,7 +687,7 @@
android:fontFamily="@font/gmarket_sans_bold" android:fontFamily="@font/gmarket_sans_bold"
android:gravity="center" android:gravity="center"
android:paddingVertical="16.7dp" android:paddingVertical="16.7dp"
android:text="500 코인" android:text="500 "
android:textColor="@color/color_9970ff" android:textColor="@color/color_9970ff"
android:textSize="14.7sp" /> android:textSize="14.7sp" />
@ -701,7 +701,7 @@
android:fontFamily="@font/gmarket_sans_bold" android:fontFamily="@font/gmarket_sans_bold"
android:gravity="center" android:gravity="center"
android:paddingVertical="16.7dp" android:paddingVertical="16.7dp"
android:text="1000 코인" android:text="1000 "
android:textColor="@color/color_9970ff" android:textColor="@color/color_9970ff"
android:textSize="14.7sp" /> android:textSize="14.7sp" />
@ -714,7 +714,7 @@
android:fontFamily="@font/gmarket_sans_bold" android:fontFamily="@font/gmarket_sans_bold"
android:gravity="center" android:gravity="center"
android:paddingVertical="16.7dp" android:paddingVertical="16.7dp"
android:text="2000 코인" android:text="2000 "
android:textColor="@color/color_9970ff" android:textColor="@color/color_9970ff"
android:textSize="14.7sp" /> android:textSize="14.7sp" />
</LinearLayout> </LinearLayout>
@ -733,7 +733,7 @@
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_marginHorizontal="13.3dp" android:layout_marginHorizontal="13.3dp"
android:layout_toStartOf="@+id/tv_coin" android:layout_toStartOf="@+id/tv_can"
android:background="@null" android:background="@null"
android:fontFamily="@font/gmarket_sans_bold" android:fontFamily="@font/gmarket_sans_bold"
android:gravity="center" android:gravity="center"
@ -747,14 +747,14 @@
android:textSize="13.3sp" /> android:textSize="13.3sp" />
<TextView <TextView
android:id="@+id/tv_coin" android:id="@+id/tv_can"
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_alignParentEnd="true" android:layout_alignParentEnd="true"
android:layout_centerVertical="true" android:layout_centerVertical="true"
android:layout_marginEnd="13.3dp" android:layout_marginEnd="13.3dp"
android:fontFamily="@font/gmarket_sans_medium" android:fontFamily="@font/gmarket_sans_medium"
android:text="코인" android:text=""
android:textColor="@color/color_9970ff" android:textColor="@color/color_9970ff"
android:textSize="13.3sp" /> android:textSize="13.3sp" />
</RelativeLayout> </RelativeLayout>

View File

@ -230,7 +230,7 @@
android:layout_marginHorizontal="26.7dp" android:layout_marginHorizontal="26.7dp"
android:layout_marginTop="13.3dp" android:layout_marginTop="13.3dp"
android:fontFamily="@font/gmarket_sans_medium" android:fontFamily="@font/gmarket_sans_medium"
android:text="계정을 삭제하면 회원님의 모든 콘텐츠와 활동 길고, 코인충전 및 적립, 사용내역 등의 기록이 삭제됩니다. 삭제된 정보는 복구할 수 없으니 신중히 결정해주세요.\n코인 충전하기를 통해 적립한 코인은 계정 삭제시 환불이 불가합니다. 또한 환불 신청 후 환불처리가 되기 전에 계정을 삭제하는 경우 포인트 사용내역을 확인할 수 없어 환불이 불가합니다. " android:text="계정을 삭제하면 회원님의 모든 콘텐츠와 활동 길고, 충전 및 적립, 사용내역 등의 기록이 삭제됩니다. 삭제된 정보는 복구할 수 없으니 신중히 결정해주세요.\n캔 충전하기를 통해 적립한 캔은 계정 삭제시 환불이 불가합니다. 또한 환불 신청 후 환불처리가 되기 전에 계정을 삭제하는 경우 포인트 사용내역을 확인할 수 없어 환불이 불가합니다. "
android:textColor="@color/color_ff5c49" /> android:textColor="@color/color_ff5c49" />
<LinearLayout <LinearLayout

View File

@ -33,7 +33,7 @@
android:textSize="12sp" /> android:textSize="12sp" />
<TextView <TextView
android:id="@+id/tv_coin_today" android:id="@+id/tv_can_today"
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_toStartOf="@+id/tv_unit_today" android:layout_toStartOf="@+id/tv_unit_today"
@ -67,7 +67,7 @@
android:textSize="12sp" /> android:textSize="12sp" />
<TextView <TextView
android:id="@+id/tv_coin_last_week" android:id="@+id/tv_can_last_week"
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_toStartOf="@+id/tv_unit_last_week" android:layout_toStartOf="@+id/tv_unit_last_week"
@ -101,7 +101,7 @@
android:textSize="12sp" /> android:textSize="12sp" />
<TextView <TextView
android:id="@+id/tv_coin_this_month" android:id="@+id/tv_can_this_month"
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_toStartOf="@+id/tv_unit_this_month" android:layout_toStartOf="@+id/tv_unit_this_month"

View File

@ -129,7 +129,7 @@
android:gravity="center" android:gravity="center"
android:textColor="@color/color_eeeeee" android:textColor="@color/color_eeeeee"
android:textSize="13.3sp" android:textSize="13.3sp"
tools:text="콘텐츠를 소장하시겠습니까?\n아래 코인이 차감됩니다." /> tools:text="콘텐츠를 소장하시겠습니까?\n아래 이 차감됩니다." />
<LinearLayout <LinearLayout
android:layout_width="match_parent" android:layout_width="match_parent"

View File

@ -28,7 +28,7 @@
app:drawableStartCompat="@drawable/ic_donation_white" /> app:drawableStartCompat="@drawable/ic_donation_white" />
<TextView <TextView
android:id="@+id/tv_coin" android:id="@+id/tv_can"
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_alignParentEnd="true" android:layout_alignParentEnd="true"
@ -50,13 +50,13 @@
android:background="@color/color_909090" /> android:background="@color/color_909090" />
<EditText <EditText
android:id="@+id/et_donation_coin" android:id="@+id/et_donation_can"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_marginHorizontal="20dp" android:layout_marginHorizontal="20dp"
android:background="@drawable/bg_round_corner_6_7_88333333" android:background="@drawable/bg_round_corner_6_7_88333333"
android:fontFamily="@font/gmarket_sans_medium" android:fontFamily="@font/gmarket_sans_medium"
android:hint="몇 코인을 후원할까요?" android:hint="몇 을 후원할까요?"
android:importantForAutofill="no" android:importantForAutofill="no"
android:inputType="numberSigned" android:inputType="numberSigned"
android:padding="13.3dp" android:padding="13.3dp"

View File

@ -32,7 +32,7 @@
</RelativeLayout> </RelativeLayout>
<RelativeLayout <RelativeLayout
android:id="@+id/rl_total_coin" android:id="@+id/rl_total_can"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_marginHorizontal="13.3dp" android:layout_marginHorizontal="13.3dp"
@ -42,7 +42,7 @@
android:paddingVertical="10.7dp"> android:paddingVertical="10.7dp">
<TextView <TextView
android:id="@+id/tv_total_coin_title" android:id="@+id/tv_total_can_title"
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_alignParentStart="true" android:layout_alignParentStart="true"
@ -53,13 +53,13 @@
android:textSize="13.3sp" /> android:textSize="13.3sp" />
<TextView <TextView
android:id="@+id/tv_total_coin" android:id="@+id/tv_total_can"
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_centerVertical="true" android:layout_centerVertical="true"
android:layout_marginEnd="2.7dp" android:layout_marginEnd="2.7dp"
android:layout_toStartOf="@+id/tv_total_coin_unit" android:layout_toStartOf="@+id/tv_total_can_unit"
android:layout_toEndOf="@+id/tv_total_coin_title" android:layout_toEndOf="@+id/tv_total_can_title"
android:fontFamily="@font/gmarket_sans_medium" android:fontFamily="@font/gmarket_sans_medium"
android:gravity="end" android:gravity="end"
android:textColor="@color/color_9970ff" android:textColor="@color/color_9970ff"
@ -67,13 +67,13 @@
tools:text="1,999,999" /> tools:text="1,999,999" />
<TextView <TextView
android:id="@+id/tv_total_coin_unit" android:id="@+id/tv_total_can_unit"
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_alignParentEnd="true" android:layout_alignParentEnd="true"
android:layout_centerVertical="true" android:layout_centerVertical="true"
android:fontFamily="@font/gmarket_sans_medium" android:fontFamily="@font/gmarket_sans_medium"
android:text="코인" android:text=""
android:textColor="@color/color_bbbbbb" android:textColor="@color/color_bbbbbb"
android:textSize="10.7sp" android:textSize="10.7sp"
tools:ignore="SmallSp" /> tools:ignore="SmallSp" />

View File

@ -113,7 +113,7 @@
android:paddingVertical="16dp"> android:paddingVertical="16dp">
<TextView <TextView
android:id="@+id/tv_coin" android:id="@+id/tv_can"
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:background="@drawable/bg_round_corner_10_9970ff" android:background="@drawable/bg_round_corner_10_9970ff"

View File

@ -41,7 +41,7 @@
tools:text="🧸여자들이 좋아하는 남자 스타일은?" /> tools:text="🧸여자들이 좋아하는 남자 스타일은?" />
<RelativeLayout <RelativeLayout
android:id="@+id/rl_date_and_coin" android:id="@+id/rl_date_and_can"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_marginHorizontal="13.3dp" android:layout_marginHorizontal="13.3dp"
@ -58,7 +58,7 @@
tools:text="2021.06.20 SUN 10p.m" /> tools:text="2021.06.20 SUN 10p.m" />
<TextView <TextView
android:id="@+id/tv_coin" android:id="@+id/tv_can"
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_alignParentEnd="true" android:layout_alignParentEnd="true"
@ -75,7 +75,7 @@
<View <View
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="1dp" android:layout_height="1dp"
android:layout_below="@+id/tv_coin" android:layout_below="@+id/tv_can"
android:layout_marginTop="8dp" android:layout_marginTop="8dp"
android:background="@color/color_88909090" /> android:background="@color/color_88909090" />
</RelativeLayout> </RelativeLayout>
@ -87,7 +87,7 @@
android:layout_marginTop="16.7dp" android:layout_marginTop="16.7dp"
app:layout_constraintEnd_toEndOf="parent" app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent" app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/rl_date_and_coin"> app:layout_constraintTop_toBottomOf="@+id/rl_date_and_can">
<TextView <TextView
android:id="@+id/tv_participate_expression" android:id="@+id/tv_participate_expression"

View File

@ -50,7 +50,7 @@
app:layout_constraintTop_toBottomOf="@+id/tv_comment_date"> app:layout_constraintTop_toBottomOf="@+id/tv_comment_date">
<LinearLayout <LinearLayout
android:id="@+id/ll_donation_coin" android:id="@+id/ll_donation_can"
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_marginVertical="5dp" android:layout_marginVertical="5dp"
@ -68,7 +68,7 @@
android:src="@drawable/ic_coin_w" /> android:src="@drawable/ic_coin_w" />
<TextView <TextView
android:id="@+id/tv_donation_coin" android:id="@+id/tv_donation_can"
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_marginStart="3dp" android:layout_marginStart="3dp"

View File

@ -19,7 +19,7 @@
app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toStartOf="parent" app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" app:layout_constraintTop_toTopOf="parent"
tools:text="5000 코인 + 1000 코인" /> tools:text="5000 캔 + 1000 캔" />
<LinearLayout <LinearLayout
android:id="@+id/ll_price" android:id="@+id/ll_price"

View File

@ -18,7 +18,7 @@
android:textSize="13.3sp" android:textSize="13.3sp"
app:layout_constraintStart_toStartOf="parent" app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" app:layout_constraintTop_toTopOf="parent"
tools:text="50코인" /> tools:text="50" />
<TextView <TextView
android:id="@+id/tv_date" android:id="@+id/tv_date"

View File

@ -99,7 +99,7 @@
android:fontFamily="@font/gmarket_sans_medium" android:fontFamily="@font/gmarket_sans_medium"
android:textColor="@color/color_7fe2e2e2" android:textColor="@color/color_7fe2e2e2"
android:textSize="12sp" android:textSize="12sp"
tools:text="300코인" /> tools:text="300" />
<TextView <TextView
android:id="@+id/tv_complete_reservation" android:id="@+id/tv_complete_reservation"

View File

@ -73,7 +73,7 @@
android:fontFamily="@font/gmarket_sans_medium" android:fontFamily="@font/gmarket_sans_medium"
android:textColor="@color/color_7fe2e2e2" android:textColor="@color/color_7fe2e2e2"
android:textSize="12sp" android:textSize="12sp"
tools:text="300코인" /> tools:text="300" />
<TextView <TextView
android:id="@+id/tv_non_cancellable" android:id="@+id/tv_non_cancellable"

View File

@ -24,7 +24,7 @@
android:contentDescription="@null" /> android:contentDescription="@null" />
<ImageView <ImageView
android:id="@+id/iv_coin" android:id="@+id/iv_can"
android:layout_width="16.7dp" android:layout_width="16.7dp"
android:layout_height="16.7dp" android:layout_height="16.7dp"
android:layout_gravity="end|bottom" android:layout_gravity="end|bottom"

View File

@ -29,7 +29,7 @@
tools:text="user5님이" /> tools:text="user5님이" />
<TextView <TextView
android:id="@+id/tv_coin_message" android:id="@+id/tv_can_message"
android:layout_width="0dp" android:layout_width="0dp"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_marginTop="8dp" android:layout_marginTop="8dp"
@ -39,7 +39,7 @@
app:layout_constraintEnd_toEndOf="parent" app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent" app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/tv_nickname" app:layout_constraintTop_toBottomOf="@+id/tv_nickname"
tools:text="1코인을 후원하셨습니다." /> tools:text="1을 후원하셨습니다." />
<TextView <TextView
android:id="@+id/tv_donation_message" android:id="@+id/tv_donation_message"
@ -51,7 +51,7 @@
android:textSize="13.3sp" android:textSize="13.3sp"
app:layout_constraintEnd_toEndOf="parent" app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent" app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/tv_coin_message" app:layout_constraintTop_toBottomOf="@+id/tv_can_message"
tools:text="'테스트'" /> tools:text="'테스트'" />
</androidx.constraintlayout.widget.ConstraintLayout> </androidx.constraintlayout.widget.ConstraintLayout>

View File

@ -70,7 +70,7 @@
tools:text="Remix" /> tools:text="Remix" />
<TextView <TextView
android:id="@+id/tv_total_donation_coin" android:id="@+id/tv_total_donation_can"
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_alignParentEnd="true" android:layout_alignParentEnd="true"