폰트 이름 변경
pretendard_bold -> bold pretendard_regular -> regular pretendard_medium -> medium pretendard_light -> light
This commit is contained in:
@@ -150,7 +150,7 @@ class SeriesDetailActivity : BaseActivity<ActivitySeriesDetailBinding>(
|
|||||||
|
|
||||||
chip.setPadding(0, 0, 0, 0)
|
chip.setPadding(0, 0, 0, 0)
|
||||||
chip.setTextColor(ContextCompat.getColor(applicationContext, R.color.color_d2d2d2))
|
chip.setTextColor(ContextCompat.getColor(applicationContext, R.color.color_d2d2d2))
|
||||||
chip.typeface = ResourcesCompat.getFont(applicationContext, R.font.pretendard_medium)
|
chip.typeface = ResourcesCompat.getFont(applicationContext, R.font.medium)
|
||||||
binding.chipGroup.addView(chip)
|
binding.chipGroup.addView(chip)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -186,7 +186,7 @@ class SeriesDetailIntroductionFragment : BaseFragment<FragmentSeriesDetailIntrod
|
|||||||
chip.setEnsureMinTouchTargetSize(false)
|
chip.setEnsureMinTouchTargetSize(false)
|
||||||
chip.setPadding(0, 0, 0, 0)
|
chip.setPadding(0, 0, 0, 0)
|
||||||
chip.setTextColor(ContextCompat.getColor(requireContext(), R.color.color_d2d2d2))
|
chip.setTextColor(ContextCompat.getColor(requireContext(), R.color.color_d2d2d2))
|
||||||
chip.typeface = ResourcesCompat.getFont(requireContext(), R.font.pretendard_medium)
|
chip.typeface = ResourcesCompat.getFont(requireContext(), R.font.medium)
|
||||||
binding.chipGroup.addView(chip)
|
binding.chipGroup.addView(chip)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -66,7 +66,7 @@ class CharacterCommentReportBottomSheet : BottomSheetDialogFragment() {
|
|||||||
setTextSize(TypedValue.COMPLEX_UNIT_SP, 16f)
|
setTextSize(TypedValue.COMPLEX_UNIT_SP, 16f)
|
||||||
// 폰트: pretendard_regular
|
// 폰트: pretendard_regular
|
||||||
try {
|
try {
|
||||||
typeface = ResourcesCompat.getFont(context, R.font.pretendard_regular)
|
typeface = ResourcesCompat.getFont(context, R.font.regular)
|
||||||
} catch (_: Exception) { /* 폰트 미존재 대비 안전 처리 */
|
} catch (_: Exception) { /* 폰트 미존재 대비 안전 처리 */
|
||||||
}
|
}
|
||||||
// 항목 간 간격: 기존 paddingVertical 12dp의 1.3배 -> 15.6dp
|
// 항목 간 간격: 기존 paddingVertical 12dp의 1.3배 -> 15.6dp
|
||||||
|
|||||||
@@ -1,6 +1,5 @@
|
|||||||
package kr.co.vividnext.sodalive.live.room.chat
|
package kr.co.vividnext.sodalive.live.room.chat
|
||||||
|
|
||||||
import android.annotation.SuppressLint
|
|
||||||
import android.content.Context
|
import android.content.Context
|
||||||
import android.graphics.Typeface
|
import android.graphics.Typeface
|
||||||
import android.text.SpannableString
|
import android.text.SpannableString
|
||||||
@@ -225,7 +224,7 @@ data class LiveRoomDonationChat(
|
|||||||
CustomTypefaceSpan(
|
CustomTypefaceSpan(
|
||||||
ResourcesCompat.getFont(
|
ResourcesCompat.getFont(
|
||||||
context,
|
context,
|
||||||
R.font.pretendard_medium
|
R.font.medium
|
||||||
)
|
)
|
||||||
),
|
),
|
||||||
0,
|
0,
|
||||||
|
|||||||
@@ -768,7 +768,7 @@ class LiveRoomCreateActivity : BaseActivity<ActivityLiveRoomCreateBinding>(
|
|||||||
)
|
)
|
||||||
priceView.typeface = ResourcesCompat.getFont(
|
priceView.typeface = ResourcesCompat.getFont(
|
||||||
applicationContext,
|
applicationContext,
|
||||||
R.font.pretendard_medium
|
R.font.medium
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -782,7 +782,7 @@ class LiveRoomCreateActivity : BaseActivity<ActivityLiveRoomCreateBinding>(
|
|||||||
)
|
)
|
||||||
priceView.typeface = ResourcesCompat.getFont(
|
priceView.typeface = ResourcesCompat.getFont(
|
||||||
applicationContext,
|
applicationContext,
|
||||||
R.font.pretendard_bold
|
R.font.bold
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -467,9 +467,9 @@ class MainActivity : BaseActivity<ActivityMainBinding>(ActivityMainBinding::infl
|
|||||||
binding.ivTab.isSelected = isSelected
|
binding.ivTab.isSelected = isSelected
|
||||||
|
|
||||||
val fontRes = if (isSelected) {
|
val fontRes = if (isSelected) {
|
||||||
R.font.pretendard_bold
|
R.font.bold
|
||||||
} else {
|
} else {
|
||||||
R.font.pretendard_light
|
R.font.light
|
||||||
}
|
}
|
||||||
binding.tvTab.typeface = ResourcesCompat.getFont(applicationContext, fontRes)
|
binding.tvTab.typeface = ResourcesCompat.getFont(applicationContext, fontRes)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -111,7 +111,7 @@ class VoiceMessageWriteFragment(
|
|||||||
binding.tvNickname.text = nickname
|
binding.tvNickname.text = nickname
|
||||||
binding.tvNickname.typeface = ResourcesCompat.getFont(
|
binding.tvNickname.typeface = ResourcesCompat.getFont(
|
||||||
requireContext(),
|
requireContext(),
|
||||||
R.font.pretendard_bold
|
R.font.bold
|
||||||
)
|
)
|
||||||
binding.tvNickname.setTextColor(
|
binding.tvNickname.setTextColor(
|
||||||
ContextCompat.getColor(
|
ContextCompat.getColor(
|
||||||
|
|||||||
@@ -24,7 +24,7 @@ class CanChargeIapAdapter(
|
|||||||
fun bind(item: ProductDetails) {
|
fun bind(item: ProductDetails) {
|
||||||
binding.tvPrice.text = item.oneTimePurchaseOfferDetails?.formattedPrice
|
binding.tvPrice.text = item.oneTimePurchaseOfferDetails?.formattedPrice
|
||||||
|
|
||||||
val typeface = ResourcesCompat.getFont(context, R.font.pretendard_medium)
|
val typeface = ResourcesCompat.getFont(context, R.font.medium)
|
||||||
binding.tvTitle.text = item.name.fontSpan(
|
binding.tvTitle.text = item.name.fontSpan(
|
||||||
typeface,
|
typeface,
|
||||||
context.getString(R.string.screen_can_status_unit)
|
context.getString(R.string.screen_can_status_unit)
|
||||||
|
|||||||
@@ -25,7 +25,7 @@ class CanChargePgAdapter(
|
|||||||
currencyCode = canCharge.currency
|
currencyCode = canCharge.currency
|
||||||
)
|
)
|
||||||
|
|
||||||
val typeface = ResourcesCompat.getFont(context, R.font.pretendard_medium)
|
val typeface = ResourcesCompat.getFont(context, R.font.medium)
|
||||||
binding.tvTitle.text = canCharge.title.fontSpan(
|
binding.tvTitle.text = canCharge.title.fontSpan(
|
||||||
typeface,
|
typeface,
|
||||||
context.getString(R.string.screen_can_status_unit)
|
context.getString(R.string.screen_can_status_unit)
|
||||||
|
|||||||
@@ -165,7 +165,7 @@ class CanPaymentActivity : BaseActivity<ActivityCanPaymentBinding>(
|
|||||||
private fun paymentMethodSelectFalse(view: TextView) {
|
private fun paymentMethodSelectFalse(view: TextView) {
|
||||||
view.typeface = ResourcesCompat.getFont(
|
view.typeface = ResourcesCompat.getFont(
|
||||||
applicationContext,
|
applicationContext,
|
||||||
R.font.pretendard_medium
|
R.font.medium
|
||||||
)
|
)
|
||||||
|
|
||||||
view.setTextColor(ContextCompat.getColor(applicationContext, R.color.color_eeeeee))
|
view.setTextColor(ContextCompat.getColor(applicationContext, R.color.color_eeeeee))
|
||||||
@@ -175,7 +175,7 @@ class CanPaymentActivity : BaseActivity<ActivityCanPaymentBinding>(
|
|||||||
private fun paymentMethodSelect(view: TextView) {
|
private fun paymentMethodSelect(view: TextView) {
|
||||||
view.typeface = ResourcesCompat.getFont(
|
view.typeface = ResourcesCompat.getFont(
|
||||||
applicationContext,
|
applicationContext,
|
||||||
R.font.pretendard_bold
|
R.font.bold
|
||||||
)
|
)
|
||||||
|
|
||||||
view.setTextColor(ContextCompat.getColor(applicationContext, R.color.color_3bb9f1))
|
view.setTextColor(ContextCompat.getColor(applicationContext, R.color.color_3bb9f1))
|
||||||
|
|||||||
@@ -77,7 +77,7 @@ class CanPaymentTempActivity : BaseActivity<ActivityCanPaymentBinding>(
|
|||||||
binding.tvPrice.text = (can * 110).moneyFormat()
|
binding.tvPrice.text = (can * 110).moneyFormat()
|
||||||
val currencyUnit = getString(R.string.screen_can_payment_currency_unit)
|
val currencyUnit = getString(R.string.screen_can_payment_currency_unit)
|
||||||
binding.tvPaymentPrice.text = "${(can * 110).moneyFormat()}$currencyUnit".fontSpan(
|
binding.tvPaymentPrice.text = "${(can * 110).moneyFormat()}$currencyUnit".fontSpan(
|
||||||
ResourcesCompat.getFont(applicationContext, R.font.pretendard_light),
|
ResourcesCompat.getFont(applicationContext, R.font.light),
|
||||||
currencyUnit
|
currencyUnit
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -119,7 +119,7 @@ class CanPaymentTempActivity : BaseActivity<ActivityCanPaymentBinding>(
|
|||||||
private fun paymentMethodSelectFalse(view: TextView) {
|
private fun paymentMethodSelectFalse(view: TextView) {
|
||||||
view.typeface = ResourcesCompat.getFont(
|
view.typeface = ResourcesCompat.getFont(
|
||||||
applicationContext,
|
applicationContext,
|
||||||
R.font.pretendard_medium
|
R.font.medium
|
||||||
)
|
)
|
||||||
|
|
||||||
view.setTextColor(ContextCompat.getColor(applicationContext, R.color.color_eeeeee))
|
view.setTextColor(ContextCompat.getColor(applicationContext, R.color.color_eeeeee))
|
||||||
@@ -129,7 +129,7 @@ class CanPaymentTempActivity : BaseActivity<ActivityCanPaymentBinding>(
|
|||||||
private fun paymentMethodSelect(view: TextView) {
|
private fun paymentMethodSelect(view: TextView) {
|
||||||
view.typeface = ResourcesCompat.getFont(
|
view.typeface = ResourcesCompat.getFont(
|
||||||
applicationContext,
|
applicationContext,
|
||||||
R.font.pretendard_bold
|
R.font.bold
|
||||||
)
|
)
|
||||||
|
|
||||||
view.setTextColor(ContextCompat.getColor(applicationContext, R.color.color_3bb9f1))
|
view.setTextColor(ContextCompat.getColor(applicationContext, R.color.color_3bb9f1))
|
||||||
|
|||||||
@@ -55,7 +55,7 @@
|
|||||||
android:layout_centerVertical="true"
|
android:layout_centerVertical="true"
|
||||||
android:layout_marginEnd="16dp"
|
android:layout_marginEnd="16dp"
|
||||||
android:layout_toStartOf="@id/iv_calendar"
|
android:layout_toStartOf="@id/iv_calendar"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:textColor="@color/white"
|
android:textColor="@color/white"
|
||||||
android:textSize="12sp" />
|
android:textSize="12sp" />
|
||||||
|
|
||||||
@@ -128,7 +128,7 @@
|
|||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:background="@drawable/bg_round_corner_7_transparent_555555"
|
android:background="@drawable/bg_round_corner_7_transparent_555555"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:hint="@string/alarm_add_name_hint"
|
android:hint="@string/alarm_add_name_hint"
|
||||||
android:importantForAutofill="no"
|
android:importantForAutofill="no"
|
||||||
android:inputType="text"
|
android:inputType="text"
|
||||||
@@ -155,7 +155,7 @@
|
|||||||
<TextView
|
<TextView
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/alarm_add_content_label"
|
android:text="@string/alarm_add_content_label"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="14.7sp" />
|
android:textSize="14.7sp" />
|
||||||
@@ -165,7 +165,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="8dp"
|
android:layout_marginTop="8dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/alarm_add_content_placeholder"
|
android:text="@string/alarm_add_content_placeholder"
|
||||||
android:textColor="@color/color_3bb9f1"
|
android:textColor="@color/color_3bb9f1"
|
||||||
android:textSize="12sp" />
|
android:textSize="12sp" />
|
||||||
@@ -184,7 +184,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="21dp"
|
android:layout_marginTop="21dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/alarm_add_volume_label"
|
android:text="@string/alarm_add_volume_label"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="14.7sp" />
|
android:textSize="14.7sp" />
|
||||||
@@ -212,7 +212,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_weight="1"
|
android:layout_weight="1"
|
||||||
android:background="@drawable/bg_round_corner_6_7_transparent_3bb9f1"
|
android:background="@drawable/bg_round_corner_6_7_transparent_3bb9f1"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:paddingVertical="16dp"
|
android:paddingVertical="16dp"
|
||||||
android:text="@string/cancel"
|
android:text="@string/cancel"
|
||||||
@@ -226,7 +226,7 @@
|
|||||||
android:layout_marginStart="13.3dp"
|
android:layout_marginStart="13.3dp"
|
||||||
android:layout_weight="1"
|
android:layout_weight="1"
|
||||||
android:background="@drawable/bg_round_corner_6_7_3bb9f1"
|
android:background="@drawable/bg_round_corner_6_7_3bb9f1"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:paddingVertical="16dp"
|
android:paddingVertical="16dp"
|
||||||
android:text="@string/alarm_add_save"
|
android:text="@string/alarm_add_save"
|
||||||
|
|||||||
@@ -11,7 +11,7 @@
|
|||||||
android:id="@+id/tv_time"
|
android:id="@+id/tv_time"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:textColor="@android:color/white"
|
android:textColor="@android:color/white"
|
||||||
android:textSize="53sp"
|
android:textSize="53sp"
|
||||||
tools:text="6:10" />
|
tools:text="6:10" />
|
||||||
@@ -21,7 +21,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="19dp"
|
android:layout_marginTop="19dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:textColor="@android:color/white"
|
android:textColor="@android:color/white"
|
||||||
android:textSize="14.7sp"
|
android:textSize="14.7sp"
|
||||||
tools:text="7월 25일" />
|
tools:text="7월 25일" />
|
||||||
@@ -31,7 +31,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="19dp"
|
android:layout_marginTop="19dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:textColor="@android:color/white"
|
android:textColor="@android:color/white"
|
||||||
android:textSize="14.7sp"
|
android:textSize="14.7sp"
|
||||||
tools:text="라이브 방송 알람" />
|
tools:text="라이브 방송 알람" />
|
||||||
|
|||||||
@@ -14,7 +14,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="13.3dp"
|
android:layout_marginTop="13.3dp"
|
||||||
android:background="@color/color_222222"
|
android:background="@color/color_222222"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:paddingHorizontal="13.3dp"
|
android:paddingHorizontal="13.3dp"
|
||||||
android:paddingVertical="8dp"
|
android:paddingVertical="8dp"
|
||||||
android:text="@string/screen_alarm_content_all_notice"
|
android:text="@string/screen_alarm_content_all_notice"
|
||||||
@@ -40,7 +40,7 @@
|
|||||||
<TextView
|
<TextView
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:text="@string/audio_content_label_all"
|
android:text="@string/audio_content_label_all"
|
||||||
android:textColor="@color/color_e2e2e2"
|
android:textColor="@color/color_e2e2e2"
|
||||||
@@ -51,7 +51,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginStart="8dp"
|
android:layout_marginStart="8dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:text="@string/common_zero"
|
android:text="@string/common_zero"
|
||||||
android:textColor="@color/color_ff5c49"
|
android:textColor="@color/color_ff5c49"
|
||||||
@@ -61,7 +61,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginStart="2dp"
|
android:layout_marginStart="2dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:text="@string/audio_content_total_unit"
|
android:text="@string/audio_content_total_unit"
|
||||||
android:textColor="@color/color_e2e2e2"
|
android:textColor="@color/color_e2e2e2"
|
||||||
|
|||||||
@@ -21,7 +21,7 @@
|
|||||||
android:layout_centerVertical="true"
|
android:layout_centerVertical="true"
|
||||||
android:drawablePadding="6.7dp"
|
android:drawablePadding="6.7dp"
|
||||||
android:ellipsize="end"
|
android:ellipsize="end"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:minHeight="48dp"
|
android:minHeight="48dp"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
@@ -46,7 +46,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginHorizontal="13.3dp"
|
android:layout_marginHorizontal="13.3dp"
|
||||||
android:layout_marginVertical="10dp"
|
android:layout_marginVertical="10dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:lineSpacingExtra="4sp"
|
android:lineSpacingExtra="4sp"
|
||||||
android:text="@string/alarm_list_notice_owned_only"
|
android:text="@string/alarm_list_notice_owned_only"
|
||||||
android:textColor="@android:color/darker_gray"
|
android:textColor="@android:color/darker_gray"
|
||||||
@@ -87,7 +87,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:drawablePadding="3dp"
|
android:drawablePadding="3dp"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:textColor="@color/color_80d8ff"
|
android:textColor="@color/color_80d8ff"
|
||||||
android:textSize="14.7sp"
|
android:textSize="14.7sp"
|
||||||
@@ -98,7 +98,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginStart="4dp"
|
android:layout_marginStart="4dp"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:text="@string/alarm_extra_slot_price_suffix"
|
android:text="@string/alarm_extra_slot_price_suffix"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
@@ -109,7 +109,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginStart="4dp"
|
android:layout_marginStart="4dp"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:text="@string/alarm_extra_slot_unlimited"
|
android:text="@string/alarm_extra_slot_unlimited"
|
||||||
android:textColor="@color/color_ff5c49"
|
android:textColor="@color/color_ff5c49"
|
||||||
@@ -120,7 +120,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginStart="4dp"
|
android:layout_marginStart="4dp"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:text="@string/alarm_extra_slot_purchase_suffix"
|
android:text="@string/alarm_extra_slot_purchase_suffix"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
@@ -133,7 +133,7 @@
|
|||||||
android:id="@+id/tv_empty_alarms"
|
android:id="@+id/tv_empty_alarms"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:text="@string/alarm_list_empty"
|
android:text="@string/alarm_list_empty"
|
||||||
android:textColor="@android:color/darker_gray"
|
android:textColor="@android:color/darker_gray"
|
||||||
|
|||||||
@@ -21,7 +21,7 @@
|
|||||||
android:id="@+id/tv_empty_order_list"
|
android:id="@+id/tv_empty_order_list"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:text="@string/alarm_select_empty"
|
android:text="@string/alarm_select_empty"
|
||||||
android:textColor="@android:color/darker_gray"
|
android:textColor="@android:color/darker_gray"
|
||||||
|
|||||||
@@ -15,7 +15,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="13.3dp"
|
android:layout_marginTop="13.3dp"
|
||||||
android:background="@color/color_222222"
|
android:background="@color/color_222222"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:paddingHorizontal="13.3dp"
|
android:paddingHorizontal="13.3dp"
|
||||||
android:paddingVertical="8dp"
|
android:paddingVertical="8dp"
|
||||||
android:text="@string/screen_asmr_new_content_notice"
|
android:text="@string/screen_asmr_new_content_notice"
|
||||||
@@ -33,7 +33,7 @@
|
|||||||
<TextView
|
<TextView
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:text="@string/audio_content_label_all"
|
android:text="@string/audio_content_label_all"
|
||||||
android:textColor="@color/color_e2e2e2"
|
android:textColor="@color/color_e2e2e2"
|
||||||
@@ -44,7 +44,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginStart="8dp"
|
android:layout_marginStart="8dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:text="@string/common_zero"
|
android:text="@string/common_zero"
|
||||||
android:textColor="@color/color_ff5c49"
|
android:textColor="@color/color_ff5c49"
|
||||||
@@ -54,7 +54,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginStart="2dp"
|
android:layout_marginStart="2dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:text="@string/audio_content_total_unit"
|
android:text="@string/audio_content_total_unit"
|
||||||
android:textColor="@color/color_e2e2e2"
|
android:textColor="@color/color_e2e2e2"
|
||||||
|
|||||||
@@ -25,7 +25,7 @@
|
|||||||
android:layout_marginHorizontal="13.3dp"
|
android:layout_marginHorizontal="13.3dp"
|
||||||
android:layout_marginTop="13.3dp"
|
android:layout_marginTop="13.3dp"
|
||||||
android:background="@drawable/bg_round_corner_4_7_3bb9f1"
|
android:background="@drawable/bg_round_corner_4_7_3bb9f1"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:paddingVertical="17dp"
|
android:paddingVertical="17dp"
|
||||||
android:text="@string/screen_audio_content_new_content"
|
android:text="@string/screen_audio_content_new_content"
|
||||||
@@ -47,7 +47,7 @@
|
|||||||
android:id="@+id/tv_sort_newest"
|
android:id="@+id/tv_sort_newest"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:text="@string/screen_audio_content_sort_newest"
|
android:text="@string/screen_audio_content_sort_newest"
|
||||||
android:textColor="@color/color_88e2e2e2"
|
android:textColor="@color/color_88e2e2e2"
|
||||||
@@ -58,7 +58,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginHorizontal="13.3dp"
|
android:layout_marginHorizontal="13.3dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:text="@string/screen_audio_content_sort_price_high"
|
android:text="@string/screen_audio_content_sort_price_high"
|
||||||
android:textColor="@color/color_88e2e2e2"
|
android:textColor="@color/color_88e2e2e2"
|
||||||
@@ -68,7 +68,7 @@
|
|||||||
android:id="@+id/tv_sort_price_low"
|
android:id="@+id/tv_sort_price_low"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:text="@string/screen_audio_content_sort_price_low"
|
android:text="@string/screen_audio_content_sort_price_low"
|
||||||
android:textColor="@color/color_88e2e2e2"
|
android:textColor="@color/color_88e2e2e2"
|
||||||
@@ -86,7 +86,7 @@
|
|||||||
<TextView
|
<TextView
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:text="@string/audio_content_label_all"
|
android:text="@string/audio_content_label_all"
|
||||||
android:textColor="@color/color_e2e2e2"
|
android:textColor="@color/color_e2e2e2"
|
||||||
@@ -97,7 +97,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginStart="8dp"
|
android:layout_marginStart="8dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:text="@string/common_zero"
|
android:text="@string/common_zero"
|
||||||
android:textColor="@color/color_ff5c49"
|
android:textColor="@color/color_ff5c49"
|
||||||
@@ -107,7 +107,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginStart="2dp"
|
android:layout_marginStart="2dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:text="@string/audio_content_total_unit"
|
android:text="@string/audio_content_total_unit"
|
||||||
android:textColor="@color/color_e2e2e2"
|
android:textColor="@color/color_e2e2e2"
|
||||||
|
|||||||
@@ -30,7 +30,7 @@
|
|||||||
android:id="@+id/tv_sort_newest"
|
android:id="@+id/tv_sort_newest"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:text="@string/screen_audio_content_sort_newest"
|
android:text="@string/screen_audio_content_sort_newest"
|
||||||
android:textColor="@color/color_88e2e2e2"
|
android:textColor="@color/color_88e2e2e2"
|
||||||
@@ -41,7 +41,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginStart="12dp"
|
android:layout_marginStart="12dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:text="@string/screen_audio_content_sort_popularity"
|
android:text="@string/screen_audio_content_sort_popularity"
|
||||||
android:textColor="@color/color_88e2e2e2"
|
android:textColor="@color/color_88e2e2e2"
|
||||||
@@ -70,6 +70,6 @@
|
|||||||
android:text="@string/screen_audio_content_empty"
|
android:text="@string/screen_audio_content_empty"
|
||||||
android:textColor="@color/color_d2d2d2"
|
android:textColor="@color/color_d2d2d2"
|
||||||
android:textSize="14sp"
|
android:textSize="14sp"
|
||||||
android:fontFamily="@font/pretendard_medium" />
|
android:fontFamily="@font/medium" />
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
|||||||
@@ -23,7 +23,7 @@
|
|||||||
android:id="@+id/tv_sort_newest"
|
android:id="@+id/tv_sort_newest"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:text="@string/screen_audio_content_sort_newest"
|
android:text="@string/screen_audio_content_sort_newest"
|
||||||
android:textColor="@color/color_88e2e2e2"
|
android:textColor="@color/color_88e2e2e2"
|
||||||
@@ -34,7 +34,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginHorizontal="13.3dp"
|
android:layout_marginHorizontal="13.3dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:text="@string/screen_audio_content_sort_price_high"
|
android:text="@string/screen_audio_content_sort_price_high"
|
||||||
android:textColor="@color/color_88e2e2e2"
|
android:textColor="@color/color_88e2e2e2"
|
||||||
@@ -44,7 +44,7 @@
|
|||||||
android:id="@+id/tv_sort_price_low"
|
android:id="@+id/tv_sort_price_low"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:text="@string/screen_audio_content_sort_price_low"
|
android:text="@string/screen_audio_content_sort_price_low"
|
||||||
android:textColor="@color/color_88e2e2e2"
|
android:textColor="@color/color_88e2e2e2"
|
||||||
@@ -62,7 +62,7 @@
|
|||||||
<TextView
|
<TextView
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:text="@string/audio_content_label_all"
|
android:text="@string/audio_content_label_all"
|
||||||
android:textColor="@color/color_e2e2e2"
|
android:textColor="@color/color_e2e2e2"
|
||||||
@@ -73,7 +73,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginStart="8dp"
|
android:layout_marginStart="8dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:text="@string/common_zero"
|
android:text="@string/common_zero"
|
||||||
android:textColor="@color/color_ff5c49"
|
android:textColor="@color/color_ff5c49"
|
||||||
@@ -83,7 +83,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginStart="2dp"
|
android:layout_marginStart="2dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:text="@string/audio_content_total_unit"
|
android:text="@string/audio_content_total_unit"
|
||||||
android:textColor="@color/color_e2e2e2"
|
android:textColor="@color/color_e2e2e2"
|
||||||
|
|||||||
@@ -23,7 +23,7 @@
|
|||||||
android:id="@+id/tv_sort_newest"
|
android:id="@+id/tv_sort_newest"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:text="@string/screen_audio_content_sort_newest"
|
android:text="@string/screen_audio_content_sort_newest"
|
||||||
android:textColor="@color/color_88e2e2e2"
|
android:textColor="@color/color_88e2e2e2"
|
||||||
@@ -34,7 +34,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginHorizontal="13.3dp"
|
android:layout_marginHorizontal="13.3dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:text="@string/screen_audio_content_sort_price_high"
|
android:text="@string/screen_audio_content_sort_price_high"
|
||||||
android:textColor="@color/color_88e2e2e2"
|
android:textColor="@color/color_88e2e2e2"
|
||||||
@@ -44,7 +44,7 @@
|
|||||||
android:id="@+id/tv_sort_price_low"
|
android:id="@+id/tv_sort_price_low"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:text="@string/screen_audio_content_sort_price_low"
|
android:text="@string/screen_audio_content_sort_price_low"
|
||||||
android:textColor="@color/color_88e2e2e2"
|
android:textColor="@color/color_88e2e2e2"
|
||||||
@@ -62,7 +62,7 @@
|
|||||||
<TextView
|
<TextView
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:text="@string/audio_content_label_all"
|
android:text="@string/audio_content_label_all"
|
||||||
android:textColor="@color/color_e2e2e2"
|
android:textColor="@color/color_e2e2e2"
|
||||||
@@ -73,7 +73,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginStart="8dp"
|
android:layout_marginStart="8dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:text="@string/common_zero"
|
android:text="@string/common_zero"
|
||||||
android:textColor="@color/color_ff5c49"
|
android:textColor="@color/color_ff5c49"
|
||||||
@@ -83,7 +83,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginStart="2dp"
|
android:layout_marginStart="2dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:text="@string/audio_content_total_unit"
|
android:text="@string/audio_content_total_unit"
|
||||||
android:textColor="@color/color_e2e2e2"
|
android:textColor="@color/color_e2e2e2"
|
||||||
|
|||||||
@@ -22,7 +22,7 @@
|
|||||||
android:layout_centerVertical="true"
|
android:layout_centerVertical="true"
|
||||||
android:layout_toStartOf="@+id/iv_menu"
|
android:layout_toStartOf="@+id/iv_menu"
|
||||||
android:drawablePadding="6.7dp"
|
android:drawablePadding="6.7dp"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="18.3sp"
|
android:textSize="18.3sp"
|
||||||
app:drawableStartCompat="@drawable/ic_back"
|
app:drawableStartCompat="@drawable/ic_back"
|
||||||
@@ -63,7 +63,7 @@
|
|||||||
android:layout_marginHorizontal="5.3dp"
|
android:layout_marginHorizontal="5.3dp"
|
||||||
android:layout_toStartOf="@+id/iv_follow"
|
android:layout_toStartOf="@+id/iv_follow"
|
||||||
android:layout_toEndOf="@+id/iv_profile"
|
android:layout_toEndOf="@+id/iv_profile"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:textColor="@color/color_777777"
|
android:textColor="@color/color_777777"
|
||||||
android:textSize="13.3sp"
|
android:textSize="13.3sp"
|
||||||
tools:text="J-DRAGON" />
|
tools:text="J-DRAGON" />
|
||||||
@@ -158,7 +158,7 @@
|
|||||||
android:text="@string/screen_audio_content_detail_preview_available"
|
android:text="@string/screen_audio_content_detail_preview_available"
|
||||||
android:textColor="@color/white"
|
android:textColor="@color/white"
|
||||||
android:textSize="16.7sp"
|
android:textSize="16.7sp"
|
||||||
android:fontFamily="@font/pretendard_medium" />
|
android:fontFamily="@font/medium" />
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
</FrameLayout>
|
</FrameLayout>
|
||||||
|
|
||||||
@@ -198,7 +198,7 @@
|
|||||||
android:text="@string/screen_audio_content_detail_preview_unavailable"
|
android:text="@string/screen_audio_content_detail_preview_unavailable"
|
||||||
android:textColor="#444446"
|
android:textColor="#444446"
|
||||||
android:textSize="16.7sp"
|
android:textSize="16.7sp"
|
||||||
android:fontFamily="@font/pretendard_medium" />
|
android:fontFamily="@font/medium" />
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
|
||||||
<SeekBar
|
<SeekBar
|
||||||
@@ -224,7 +224,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_centerInParent="true"
|
android:layout_centerInParent="true"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/audio_content_badge_sold_out"
|
android:text="@string/audio_content_badge_sold_out"
|
||||||
android:textColor="@color/white"
|
android:textColor="@color/white"
|
||||||
android:textSize="36.7sp"
|
android:textSize="36.7sp"
|
||||||
@@ -253,7 +253,7 @@
|
|||||||
android:id="@+id/tv_current_duration"
|
android:id="@+id/tv_current_duration"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_audio_content_detail_time_default"
|
android:text="@string/screen_audio_content_detail_time_default"
|
||||||
android:textColor="@color/white"
|
android:textColor="@color/white"
|
||||||
android:textSize="12sp"
|
android:textSize="12sp"
|
||||||
@@ -264,7 +264,7 @@
|
|||||||
android:id="@+id/tv_total_duration"
|
android:id="@+id/tv_total_duration"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_audio_content_detail_time_total_default"
|
android:text="@string/screen_audio_content_detail_time_total_default"
|
||||||
android:textColor="@color/white"
|
android:textColor="@color/white"
|
||||||
android:textSize="12sp"
|
android:textSize="12sp"
|
||||||
@@ -324,7 +324,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:ellipsize="end"
|
android:ellipsize="end"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:maxLines="2"
|
android:maxLines="2"
|
||||||
android:textColor="@color/color_d2d2d2"
|
android:textColor="@color/color_d2d2d2"
|
||||||
android:textSize="11sp"
|
android:textSize="11sp"
|
||||||
@@ -335,7 +335,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="5.3dp"
|
android:layout_marginTop="5.3dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_audio_content_detail_previous"
|
android:text="@string/screen_audio_content_detail_previous"
|
||||||
android:textColor="@color/color_3bb9f1"
|
android:textColor="@color/color_3bb9f1"
|
||||||
android:textSize="13.3sp" />
|
android:textSize="13.3sp" />
|
||||||
@@ -369,7 +369,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:ellipsize="end"
|
android:ellipsize="end"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:maxLines="2"
|
android:maxLines="2"
|
||||||
android:textColor="@color/color_d2d2d2"
|
android:textColor="@color/color_d2d2d2"
|
||||||
android:textSize="11sp"
|
android:textSize="11sp"
|
||||||
@@ -380,7 +380,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="5.3dp"
|
android:layout_marginTop="5.3dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_audio_content_detail_next"
|
android:text="@string/screen_audio_content_detail_next"
|
||||||
android:textColor="@color/color_3bb9f1"
|
android:textColor="@color/color_3bb9f1"
|
||||||
android:textSize="13.3sp" />
|
android:textSize="13.3sp" />
|
||||||
@@ -417,7 +417,7 @@
|
|||||||
android:text="@string/audio_content_badge_scheduled"
|
android:text="@string/audio_content_badge_scheduled"
|
||||||
android:textColor="@color/color_3bb9f1"
|
android:textColor="@color/color_3bb9f1"
|
||||||
android:visibility="gone"
|
android:visibility="gone"
|
||||||
android:fontFamily="@font/pretendard_medium" />
|
android:fontFamily="@font/medium" />
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
android:id="@+id/tv_theme"
|
android:id="@+id/tv_theme"
|
||||||
@@ -428,7 +428,7 @@
|
|||||||
android:paddingVertical="3.3dp"
|
android:paddingVertical="3.3dp"
|
||||||
android:textColor="@color/color_3bac6a"
|
android:textColor="@color/color_3bac6a"
|
||||||
tools:text="커버곡"
|
tools:text="커버곡"
|
||||||
android:fontFamily="@font/pretendard_medium" />
|
android:fontFamily="@font/medium" />
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
android:id="@+id/tv_19"
|
android:id="@+id/tv_19"
|
||||||
@@ -441,7 +441,7 @@
|
|||||||
android:text="@string/audio_content_detail_age_badge_19"
|
android:text="@string/audio_content_detail_age_badge_19"
|
||||||
android:textColor="@color/color_e33621"
|
android:textColor="@color/color_e33621"
|
||||||
android:visibility="gone"
|
android:visibility="gone"
|
||||||
android:fontFamily="@font/pretendard_medium" />
|
android:fontFamily="@font/medium" />
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
@@ -455,7 +455,7 @@
|
|||||||
android:text="@string/audio_content_badge_owned"
|
android:text="@string/audio_content_badge_owned"
|
||||||
android:textColor="@color/color_b1ef2c"
|
android:textColor="@color/color_b1ef2c"
|
||||||
android:visibility="gone"
|
android:visibility="gone"
|
||||||
android:fontFamily="@font/pretendard_medium" />
|
android:fontFamily="@font/medium" />
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
android:id="@+id/tv_remaining_time"
|
android:id="@+id/tv_remaining_time"
|
||||||
@@ -470,7 +470,7 @@
|
|||||||
android:visibility="gone"
|
android:visibility="gone"
|
||||||
app:drawableStartCompat="@drawable/ic_time_l"
|
app:drawableStartCompat="@drawable/ic_time_l"
|
||||||
tools:text="120:30:30"
|
tools:text="120:30:30"
|
||||||
android:fontFamily="@font/pretendard_medium" />
|
android:fontFamily="@font/medium" />
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
android:id="@+id/tv_rental"
|
android:id="@+id/tv_rental"
|
||||||
@@ -483,7 +483,7 @@
|
|||||||
android:text="@string/audio_content_badge_rented"
|
android:text="@string/audio_content_badge_rented"
|
||||||
android:textColor="@color/color_9970ff"
|
android:textColor="@color/color_9970ff"
|
||||||
android:visibility="gone"
|
android:visibility="gone"
|
||||||
android:fontFamily="@font/pretendard_medium" />
|
android:fontFamily="@font/medium" />
|
||||||
</RelativeLayout>
|
</RelativeLayout>
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
@@ -492,7 +492,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginHorizontal="13.3dp"
|
android:layout_marginHorizontal="13.3dp"
|
||||||
android:layout_marginTop="13.3dp"
|
android:layout_marginTop="13.3dp"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:textColor="@color/color_d2d2d2"
|
android:textColor="@color/color_d2d2d2"
|
||||||
android:textSize="16sp"
|
android:textSize="16sp"
|
||||||
tools:text="매버릭 팔레트 (feat. J-DRAGON)" />
|
tools:text="매버릭 팔레트 (feat. J-DRAGON)" />
|
||||||
@@ -532,7 +532,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginStart="4dp"
|
android:layout_marginStart="4dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:textColor="@color/color_d2d2d2"
|
android:textColor="@color/color_d2d2d2"
|
||||||
android:textSize="13.3sp"
|
android:textSize="13.3sp"
|
||||||
tools:text="1234" />
|
tools:text="1234" />
|
||||||
@@ -545,7 +545,7 @@
|
|||||||
android:layout_marginStart="8dp"
|
android:layout_marginStart="8dp"
|
||||||
android:background="@drawable/bg_round_corner_26_7_19ffffff"
|
android:background="@drawable/bg_round_corner_26_7_19ffffff"
|
||||||
android:drawablePadding="4dp"
|
android:drawablePadding="4dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:orientation="horizontal"
|
android:orientation="horizontal"
|
||||||
android:paddingHorizontal="13.3dp"
|
android:paddingHorizontal="13.3dp"
|
||||||
@@ -577,7 +577,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginStart="4dp"
|
android:layout_marginStart="4dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:text="@string/screen_audio_content_detail_donation"
|
android:text="@string/screen_audio_content_detail_donation"
|
||||||
android:textColor="@color/color_d2d2d2"
|
android:textColor="@color/color_d2d2d2"
|
||||||
@@ -601,7 +601,7 @@
|
|||||||
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:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_audio_content_detail_limited_edition"
|
android:text="@string/screen_audio_content_detail_limited_edition"
|
||||||
android:textColor="@color/color_3bb9f1"
|
android:textColor="@color/color_3bb9f1"
|
||||||
android:textSize="13.3sp" />
|
android:textSize="13.3sp" />
|
||||||
@@ -619,7 +619,7 @@
|
|||||||
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_2_6_transparent_d2d2d2"
|
android:background="@drawable/bg_round_corner_2_6_transparent_d2d2d2"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:paddingHorizontal="5.3dp"
|
android:paddingHorizontal="5.3dp"
|
||||||
android:paddingVertical="3.3dp"
|
android:paddingVertical="3.3dp"
|
||||||
android:text="@string/audio_content_badge_sold_out"
|
android:text="@string/audio_content_badge_sold_out"
|
||||||
@@ -631,7 +631,7 @@
|
|||||||
android:id="@+id/tv_remaining"
|
android:id="@+id/tv_remaining"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_audio_content_detail_remaining"
|
android:text="@string/screen_audio_content_detail_remaining"
|
||||||
android:textColor="@color/color_d2d2d2"
|
android:textColor="@color/color_d2d2d2"
|
||||||
android:textSize="13.3sp" />
|
android:textSize="13.3sp" />
|
||||||
@@ -641,7 +641,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginStart="5.3dp"
|
android:layout_marginStart="5.3dp"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:textColor="@color/color_3bb9f1"
|
android:textColor="@color/color_3bb9f1"
|
||||||
android:textSize="13.3sp"
|
android:textSize="13.3sp"
|
||||||
tools:text="10" />
|
tools:text="10" />
|
||||||
@@ -650,7 +650,7 @@
|
|||||||
android:id="@+id/tv_total_count"
|
android:id="@+id/tv_total_count"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:textColor="@color/color_d2d2d2"
|
android:textColor="@color/color_d2d2d2"
|
||||||
android:textSize="13.3sp"
|
android:textSize="13.3sp"
|
||||||
tools:text=" / 10" />
|
tools:text=" / 10" />
|
||||||
@@ -663,7 +663,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginHorizontal="13.3dp"
|
android:layout_marginHorizontal="13.3dp"
|
||||||
android:layout_marginTop="13.3dp"
|
android:layout_marginTop="13.3dp"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_audio_content_detail_buyer_title"
|
android:text="@string/screen_audio_content_detail_buyer_title"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="18.3sp"
|
android:textSize="18.3sp"
|
||||||
@@ -697,14 +697,14 @@
|
|||||||
android:textSize="12sp"
|
android:textSize="12sp"
|
||||||
android:visibility="gone"
|
android:visibility="gone"
|
||||||
tools:text="#커버곡 #라이브 #연애 #썸"
|
tools:text="#커버곡 #라이브 #연애 #썸"
|
||||||
android:fontFamily="@font/pretendard_medium" />
|
android:fontFamily="@font/medium" />
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
android:id="@+id/tv_detail"
|
android:id="@+id/tv_detail"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:ellipsize="end"
|
android:ellipsize="end"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:lineSpacingExtra="5dp"
|
android:lineSpacingExtra="5dp"
|
||||||
android:maxLines="2"
|
android:maxLines="2"
|
||||||
android:textColor="@color/color_909090"
|
android:textColor="@color/color_909090"
|
||||||
@@ -726,7 +726,7 @@
|
|||||||
android:text="@string/screen_audio_content_detail_preview_message"
|
android:text="@string/screen_audio_content_detail_preview_message"
|
||||||
android:textColor="@color/color_bbbbbb"
|
android:textColor="@color/color_bbbbbb"
|
||||||
android:textSize="12sp"
|
android:textSize="12sp"
|
||||||
android:fontFamily="@font/pretendard_medium" />
|
android:fontFamily="@font/medium" />
|
||||||
|
|
||||||
<ImageView
|
<ImageView
|
||||||
android:id="@+id/iv_close_preview_alert"
|
android:id="@+id/iv_close_preview_alert"
|
||||||
@@ -746,7 +746,7 @@
|
|||||||
android:layout_marginHorizontal="13.3dp"
|
android:layout_marginHorizontal="13.3dp"
|
||||||
android:layout_marginTop="18.3dp"
|
android:layout_marginTop="18.3dp"
|
||||||
android:background="@drawable/bg_round_corner_5_3_525252"
|
android:background="@drawable/bg_round_corner_5_3_525252"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:paddingVertical="16dp"
|
android:paddingVertical="16dp"
|
||||||
android:text="@string/screen_audio_content_detail_purchase_sold_out"
|
android:text="@string/screen_audio_content_detail_purchase_sold_out"
|
||||||
@@ -786,7 +786,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginStart="5.3dp"
|
android:layout_marginStart="5.3dp"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:textColor="@color/white"
|
android:textColor="@color/white"
|
||||||
android:textSize="14.7sp"
|
android:textSize="14.7sp"
|
||||||
tools:text="300" />
|
tools:text="300" />
|
||||||
@@ -795,7 +795,7 @@
|
|||||||
android:id="@+id/tv_unit"
|
android:id="@+id/tv_unit"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_light"
|
android:fontFamily="@font/light"
|
||||||
android:text="@string/screen_audio_content_detail_purchase_unit_can"
|
android:text="@string/screen_audio_content_detail_purchase_unit_can"
|
||||||
android:textColor="@color/white"
|
android:textColor="@color/white"
|
||||||
android:textSize="12sp" />
|
android:textSize="12sp" />
|
||||||
@@ -805,7 +805,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginStart="4dp"
|
android:layout_marginStart="4dp"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_audio_content_detail_action_buy"
|
android:text="@string/screen_audio_content_detail_action_buy"
|
||||||
android:textColor="@color/white"
|
android:textColor="@color/white"
|
||||||
android:textSize="14.7sp" />
|
android:textSize="14.7sp" />
|
||||||
@@ -816,7 +816,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_centerInParent="true"
|
android:layout_centerInParent="true"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:textColor="@color/white"
|
android:textColor="@color/white"
|
||||||
android:textSize="13.3sp"
|
android:textSize="13.3sp"
|
||||||
@@ -846,7 +846,7 @@
|
|||||||
<TextView
|
<TextView
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_audio_content_detail_comment_title"
|
android:text="@string/screen_audio_content_detail_comment_title"
|
||||||
android:textColor="@color/white"
|
android:textColor="@color/white"
|
||||||
android:textSize="12sp" />
|
android:textSize="12sp" />
|
||||||
@@ -856,7 +856,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginStart="5.3dp"
|
android:layout_marginStart="5.3dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:textColor="@color/color_909090"
|
android:textColor="@color/color_909090"
|
||||||
android:textSize="12sp"
|
android:textSize="12sp"
|
||||||
tools:text="1,204" />
|
tools:text="1,204" />
|
||||||
@@ -869,7 +869,7 @@
|
|||||||
android:layout_alignParentEnd="true"
|
android:layout_alignParentEnd="true"
|
||||||
android:button="@null"
|
android:button="@null"
|
||||||
android:drawablePadding="8dp"
|
android:drawablePadding="8dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:text="@string/screen_audio_content_detail_comment_secret"
|
android:text="@string/screen_audio_content_detail_comment_secret"
|
||||||
android:textColor="@color/color_selected_secret"
|
android:textColor="@color/color_selected_secret"
|
||||||
@@ -916,7 +916,7 @@
|
|||||||
android:textCursorDrawable="@drawable/edit_text_cursor"
|
android:textCursorDrawable="@drawable/edit_text_cursor"
|
||||||
android:textSize="13.3sp"
|
android:textSize="13.3sp"
|
||||||
tools:ignore="LabelFor"
|
tools:ignore="LabelFor"
|
||||||
android:fontFamily="@font/pretendard_medium" />
|
android:fontFamily="@font/medium" />
|
||||||
|
|
||||||
<ImageView
|
<ImageView
|
||||||
android:id="@+id/iv_comment_send"
|
android:id="@+id/iv_comment_send"
|
||||||
@@ -942,7 +942,7 @@
|
|||||||
android:textSize="12sp"
|
android:textSize="12sp"
|
||||||
android:visibility="gone"
|
android:visibility="gone"
|
||||||
tools:text="너무 좋아요!!! 너무 좋아요!!! 너무 좋아요!!! 너무 좋아요!!! 너무 좋아요!!! 너무 좋아요!!!"
|
tools:text="너무 좋아요!!! 너무 좋아요!!! 너무 좋아요!!! 너무 좋아요!!! 너무 좋아요!!! 너무 좋아요!!!"
|
||||||
android:fontFamily="@font/pretendard_medium" />
|
android:fontFamily="@font/medium" />
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
|
||||||
@@ -956,7 +956,7 @@
|
|||||||
<TextView
|
<TextView
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_audio_content_detail_creator_other_title"
|
android:text="@string/screen_audio_content_detail_creator_other_title"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="18.3sp" />
|
android:textSize="18.3sp" />
|
||||||
@@ -987,7 +987,7 @@
|
|||||||
<TextView
|
<TextView
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:text="@string/screen_audio_content_detail_creator_other_empty"
|
android:text="@string/screen_audio_content_detail_creator_other_empty"
|
||||||
android:textColor="@color/color_bbbbbb"
|
android:textColor="@color/color_bbbbbb"
|
||||||
@@ -1012,7 +1012,7 @@
|
|||||||
<TextView
|
<TextView
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_audio_content_detail_theme_other_title"
|
android:text="@string/screen_audio_content_detail_theme_other_title"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="18.3sp" />
|
android:textSize="18.3sp" />
|
||||||
@@ -1043,7 +1043,7 @@
|
|||||||
<TextView
|
<TextView
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:text="@string/screen_audio_content_detail_theme_other_empty"
|
android:text="@string/screen_audio_content_detail_theme_other_empty"
|
||||||
android:textColor="@color/color_bbbbbb"
|
android:textColor="@color/color_bbbbbb"
|
||||||
@@ -1089,7 +1089,7 @@
|
|||||||
android:text="@string/screen_audio_content_detail_adult_notice"
|
android:text="@string/screen_audio_content_detail_adult_notice"
|
||||||
android:textColor="@color/color_bbbbbb"
|
android:textColor="@color/color_bbbbbb"
|
||||||
android:textSize="18.7sp"
|
android:textSize="18.7sp"
|
||||||
android:fontFamily="@font/pretendard_medium" />
|
android:fontFamily="@font/medium" />
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
android:id="@+id/tv_auth"
|
android:id="@+id/tv_auth"
|
||||||
@@ -1102,7 +1102,7 @@
|
|||||||
android:text="@string/auth_title"
|
android:text="@string/auth_title"
|
||||||
android:textColor="@color/white"
|
android:textColor="@color/white"
|
||||||
android:textSize="18.7sp"
|
android:textSize="18.7sp"
|
||||||
android:fontFamily="@font/pretendard_medium" />
|
android:fontFamily="@font/medium" />
|
||||||
|
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
</RelativeLayout>
|
</RelativeLayout>
|
||||||
|
|||||||
@@ -78,7 +78,7 @@
|
|||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="13sp"
|
android:textSize="13sp"
|
||||||
tools:text="JFLA 커버곡 Avicii for your self"
|
tools:text="JFLA 커버곡 Avicii for your self"
|
||||||
android:fontFamily="@font/pretendard_medium" />
|
android:fontFamily="@font/medium" />
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
android:id="@+id/tv_nickname"
|
android:id="@+id/tv_nickname"
|
||||||
@@ -89,7 +89,7 @@
|
|||||||
android:textSize="11sp"
|
android:textSize="11sp"
|
||||||
tools:ignore="SmallSp"
|
tools:ignore="SmallSp"
|
||||||
tools:text="JFLA 커버곡 Avicii for your self"
|
tools:text="JFLA 커버곡 Avicii for your self"
|
||||||
android:fontFamily="@font/pretendard_medium" />
|
android:fontFamily="@font/medium" />
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
|
||||||
<ImageView
|
<ImageView
|
||||||
@@ -148,7 +148,7 @@
|
|||||||
app:layout_constraintStart_toEndOf="@+id/iv_player_cover"
|
app:layout_constraintStart_toEndOf="@+id/iv_player_cover"
|
||||||
app:layout_constraintTop_toTopOf="@+id/iv_player_cover"
|
app:layout_constraintTop_toTopOf="@+id/iv_player_cover"
|
||||||
tools:text="JFLA 커버곡 Avicii for your self"
|
tools:text="JFLA 커버곡 Avicii for your self"
|
||||||
android:fontFamily="@font/pretendard_medium" />
|
android:fontFamily="@font/medium" />
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
android:id="@+id/tv_player_nickname"
|
android:id="@+id/tv_player_nickname"
|
||||||
@@ -162,7 +162,7 @@
|
|||||||
app:layout_constraintTop_toBottomOf="@+id/tv_player_title"
|
app:layout_constraintTop_toBottomOf="@+id/tv_player_title"
|
||||||
tools:ignore="SmallSp"
|
tools:ignore="SmallSp"
|
||||||
tools:text="JFLA 커버곡 Avicii for your self"
|
tools:text="JFLA 커버곡 Avicii for your self"
|
||||||
android:fontFamily="@font/pretendard_medium" />
|
android:fontFamily="@font/medium" />
|
||||||
|
|
||||||
<ImageView
|
<ImageView
|
||||||
android:id="@+id/iv_player_play_or_pause"
|
android:id="@+id/iv_player_play_or_pause"
|
||||||
|
|||||||
@@ -36,7 +36,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginHorizontal="13.3dp"
|
android:layout_marginHorizontal="13.3dp"
|
||||||
android:layout_marginTop="13.3dp"
|
android:layout_marginTop="13.3dp"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_audio_content_upload_thumbnail_label"
|
android:text="@string/screen_audio_content_upload_thumbnail_label"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="16.7sp" />
|
android:textSize="16.7sp" />
|
||||||
@@ -84,7 +84,7 @@
|
|||||||
<TextView
|
<TextView
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_audio_content_upload_title_label"
|
android:text="@string/screen_audio_content_upload_title_label"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="16.7sp" />
|
android:textSize="16.7sp" />
|
||||||
@@ -95,7 +95,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="13.3dp"
|
android:layout_marginTop="13.3dp"
|
||||||
android:background="@drawable/bg_round_corner_6_7_222222"
|
android:background="@drawable/bg_round_corner_6_7_222222"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:hint="제목을 입력하세요."
|
android:hint="제목을 입력하세요."
|
||||||
android:importantForAutofill="no"
|
android:importantForAutofill="no"
|
||||||
android:inputType="textWebEditText"
|
android:inputType="textWebEditText"
|
||||||
@@ -124,7 +124,7 @@
|
|||||||
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:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:lineSpacingExtra="5sp"
|
android:lineSpacingExtra="5sp"
|
||||||
android:text="@string/screen_audio_content_upload_content_label"
|
android:text="@string/screen_audio_content_upload_content_label"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
@@ -139,7 +139,7 @@
|
|||||||
android:id="@+id/tv_number_of_characters"
|
android:id="@+id/tv_number_of_characters"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/audio_content_modify_char_count_initial"
|
android:text="@string/audio_content_modify_char_count_initial"
|
||||||
android:textColor="@color/color_ff5c49"
|
android:textColor="@color/color_ff5c49"
|
||||||
android:textSize="13.3sp" />
|
android:textSize="13.3sp" />
|
||||||
@@ -147,7 +147,7 @@
|
|||||||
<TextView
|
<TextView
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_audio_content_upload_char_limit_suffix"
|
android:text="@string/screen_audio_content_upload_char_limit_suffix"
|
||||||
android:textColor="@color/color_777777"
|
android:textColor="@color/color_777777"
|
||||||
android:textSize="13.3sp" />
|
android:textSize="13.3sp" />
|
||||||
@@ -161,7 +161,7 @@
|
|||||||
android:layout_height="200dp"
|
android:layout_height="200dp"
|
||||||
android:layout_marginTop="6.7dp"
|
android:layout_marginTop="6.7dp"
|
||||||
android:background="@drawable/bg_round_corner_6_7_222222"
|
android:background="@drawable/bg_round_corner_6_7_222222"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="top"
|
android:gravity="top"
|
||||||
android:hint="내용을 입력하세요"
|
android:hint="내용을 입력하세요"
|
||||||
android:importantForAutofill="no"
|
android:importantForAutofill="no"
|
||||||
@@ -184,7 +184,7 @@
|
|||||||
<TextView
|
<TextView
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_audio_content_upload_tag_label"
|
android:text="@string/screen_audio_content_upload_tag_label"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="16.7sp" />
|
android:textSize="16.7sp" />
|
||||||
@@ -195,7 +195,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="13.3dp"
|
android:layout_marginTop="13.3dp"
|
||||||
android:background="@drawable/bg_round_corner_6_7_222222"
|
android:background="@drawable/bg_round_corner_6_7_222222"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:hint="예 : #연애 #커버곡 #태그"
|
android:hint="예 : #연애 #커버곡 #태그"
|
||||||
android:importantForAutofill="no"
|
android:importantForAutofill="no"
|
||||||
android:inputType="textWebEditText"
|
android:inputType="textWebEditText"
|
||||||
@@ -221,7 +221,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginHorizontal="13.3dp"
|
android:layout_marginHorizontal="13.3dp"
|
||||||
android:layout_marginTop="30dp"
|
android:layout_marginTop="30dp"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:lineSpacingExtra="5sp"
|
android:lineSpacingExtra="5sp"
|
||||||
android:text="@string/screen_audio_content_upload_point_section_title"
|
android:text="@string/screen_audio_content_upload_point_section_title"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
@@ -257,7 +257,7 @@
|
|||||||
android:id="@+id/tv_available_point"
|
android:id="@+id/tv_available_point"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_audio_content_upload_point_available"
|
android:text="@string/screen_audio_content_upload_point_available"
|
||||||
android:textColor="@color/color_3bb9f1"
|
android:textColor="@color/color_3bb9f1"
|
||||||
android:textSize="14.7sp" />
|
android:textSize="14.7sp" />
|
||||||
@@ -286,7 +286,7 @@
|
|||||||
android:id="@+id/tv_not_available_point"
|
android:id="@+id/tv_not_available_point"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_audio_content_upload_point_unavailable"
|
android:text="@string/screen_audio_content_upload_point_unavailable"
|
||||||
android:textColor="@color/color_3bb9f1"
|
android:textColor="@color/color_3bb9f1"
|
||||||
android:textSize="14.7sp" />
|
android:textSize="14.7sp" />
|
||||||
@@ -305,7 +305,7 @@
|
|||||||
<TextView
|
<TextView
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:lineSpacingExtra="5sp"
|
android:lineSpacingExtra="5sp"
|
||||||
android:text="@string/screen_audio_content_upload_age_section_title"
|
android:text="@string/screen_audio_content_upload_age_section_title"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
@@ -339,7 +339,7 @@
|
|||||||
android:id="@+id/tv_age_all"
|
android:id="@+id/tv_age_all"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_audio_content_upload_age_all"
|
android:text="@string/screen_audio_content_upload_age_all"
|
||||||
android:textColor="@color/color_3bb9f1"
|
android:textColor="@color/color_3bb9f1"
|
||||||
android:textSize="14.7sp" />
|
android:textSize="14.7sp" />
|
||||||
@@ -368,7 +368,7 @@
|
|||||||
android:id="@+id/tv_age_19"
|
android:id="@+id/tv_age_19"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_audio_content_upload_age_19"
|
android:text="@string/screen_audio_content_upload_age_19"
|
||||||
android:textColor="@color/color_3bb9f1"
|
android:textColor="@color/color_3bb9f1"
|
||||||
android:textSize="14.7sp" />
|
android:textSize="14.7sp" />
|
||||||
@@ -379,7 +379,7 @@
|
|||||||
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"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_audio_content_upload_age_notice"
|
android:text="@string/screen_audio_content_upload_age_notice"
|
||||||
android:textColor="@color/color_dd4500"
|
android:textColor="@color/color_dd4500"
|
||||||
android:textSize="13.3sp" />
|
android:textSize="13.3sp" />
|
||||||
@@ -396,7 +396,7 @@
|
|||||||
<TextView
|
<TextView
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:lineSpacingExtra="5sp"
|
android:lineSpacingExtra="5sp"
|
||||||
android:text="@string/screen_audio_content_upload_comment_section_title"
|
android:text="@string/screen_audio_content_upload_comment_section_title"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
@@ -430,7 +430,7 @@
|
|||||||
android:id="@+id/tv_comment_yes"
|
android:id="@+id/tv_comment_yes"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_audio_content_upload_comment_allow"
|
android:text="@string/screen_audio_content_upload_comment_allow"
|
||||||
android:textColor="@color/color_3bb9f1"
|
android:textColor="@color/color_3bb9f1"
|
||||||
android:textSize="14.7sp" />
|
android:textSize="14.7sp" />
|
||||||
@@ -459,7 +459,7 @@
|
|||||||
android:id="@+id/tv_comment_no"
|
android:id="@+id/tv_comment_no"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_audio_content_upload_comment_disallow"
|
android:text="@string/screen_audio_content_upload_comment_disallow"
|
||||||
android:textColor="@color/color_3bb9f1"
|
android:textColor="@color/color_3bb9f1"
|
||||||
android:textSize="14.7sp" />
|
android:textSize="14.7sp" />
|
||||||
@@ -482,7 +482,7 @@
|
|||||||
android:layout_marginEnd="6.7dp"
|
android:layout_marginEnd="6.7dp"
|
||||||
android:layout_weight="1"
|
android:layout_weight="1"
|
||||||
android:background="@drawable/bg_round_corner_6_7_13181b_3bb9f1"
|
android:background="@drawable/bg_round_corner_6_7_13181b_3bb9f1"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:text="@string/cancel"
|
android:text="@string/cancel"
|
||||||
android:textColor="@color/color_3bb9f1"
|
android:textColor="@color/color_3bb9f1"
|
||||||
@@ -495,7 +495,7 @@
|
|||||||
android:layout_marginStart="6.7dp"
|
android:layout_marginStart="6.7dp"
|
||||||
android:layout_weight="1"
|
android:layout_weight="1"
|
||||||
android:background="@drawable/bg_round_corner_6_7_3bb9f1"
|
android:background="@drawable/bg_round_corner_6_7_3bb9f1"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:text="@string/audio_content_playlist_modify_save"
|
android:text="@string/audio_content_playlist_modify_save"
|
||||||
android:textColor="@color/white"
|
android:textColor="@color/white"
|
||||||
|
|||||||
@@ -16,7 +16,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="13.3dp"
|
android:layout_marginTop="13.3dp"
|
||||||
android:background="@color/color_222222"
|
android:background="@color/color_222222"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:paddingHorizontal="13.3dp"
|
android:paddingHorizontal="13.3dp"
|
||||||
android:paddingVertical="8dp"
|
android:paddingVertical="8dp"
|
||||||
android:text="@string/screen_audio_content_new_all_notice"
|
android:text="@string/screen_audio_content_new_all_notice"
|
||||||
@@ -42,7 +42,7 @@
|
|||||||
<TextView
|
<TextView
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:text="@string/audio_content_label_all"
|
android:text="@string/audio_content_label_all"
|
||||||
android:textColor="@color/color_e2e2e2"
|
android:textColor="@color/color_e2e2e2"
|
||||||
@@ -53,7 +53,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginStart="8dp"
|
android:layout_marginStart="8dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:text="@string/common_zero"
|
android:text="@string/common_zero"
|
||||||
android:textColor="@color/color_ff5c49"
|
android:textColor="@color/color_ff5c49"
|
||||||
@@ -63,7 +63,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginStart="2dp"
|
android:layout_marginStart="2dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:text="@string/audio_content_total_unit"
|
android:text="@string/audio_content_total_unit"
|
||||||
android:textColor="@color/color_e2e2e2"
|
android:textColor="@color/color_e2e2e2"
|
||||||
@@ -98,7 +98,7 @@
|
|||||||
<TextView
|
<TextView
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:text="@string/screen_audio_content_new_all_empty"
|
android:text="@string/screen_audio_content_new_all_empty"
|
||||||
android:textColor="@color/color_bbbbbb"
|
android:textColor="@color/color_bbbbbb"
|
||||||
|
|||||||
@@ -23,7 +23,7 @@
|
|||||||
android:layout_centerVertical="true"
|
android:layout_centerVertical="true"
|
||||||
android:drawablePadding="6.7dp"
|
android:drawablePadding="6.7dp"
|
||||||
android:ellipsize="end"
|
android:ellipsize="end"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center_vertical"
|
android:gravity="center_vertical"
|
||||||
android:minHeight="48dp"
|
android:minHeight="48dp"
|
||||||
android:paddingHorizontal="13.3dp"
|
android:paddingHorizontal="13.3dp"
|
||||||
@@ -39,7 +39,7 @@
|
|||||||
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/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:minHeight="48dp"
|
android:minHeight="48dp"
|
||||||
android:paddingHorizontal="13.3dp"
|
android:paddingHorizontal="13.3dp"
|
||||||
@@ -54,7 +54,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginStart="13.3dp"
|
android:layout_marginStart="13.3dp"
|
||||||
android:layout_marginTop="26.7dp"
|
android:layout_marginTop="26.7dp"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/audio_content_playlist_create_title_label"
|
android:text="@string/audio_content_playlist_create_title_label"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="16.7sp"
|
android:textSize="16.7sp"
|
||||||
@@ -66,7 +66,7 @@
|
|||||||
android:layout_width="0dp"
|
android:layout_width="0dp"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginEnd="13.3dp"
|
android:layout_marginEnd="13.3dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/audio_content_playlist_create_title_length_initial"
|
android:text="@string/audio_content_playlist_create_title_length_initial"
|
||||||
android:textColor="@color/color_777777"
|
android:textColor="@color/color_777777"
|
||||||
android:textSize="13.3sp"
|
android:textSize="13.3sp"
|
||||||
@@ -80,7 +80,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="13.3dp"
|
android:layout_marginTop="13.3dp"
|
||||||
android:background="@drawable/bg_round_corner_6_7_222222"
|
android:background="@drawable/bg_round_corner_6_7_222222"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:importantForAutofill="no"
|
android:importantForAutofill="no"
|
||||||
android:inputType="textWebEditText"
|
android:inputType="textWebEditText"
|
||||||
android:maxLines="1"
|
android:maxLines="1"
|
||||||
@@ -100,7 +100,7 @@
|
|||||||
android:layout_width="0dp"
|
android:layout_width="0dp"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="26.7dp"
|
android:layout_marginTop="26.7dp"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/audio_content_playlist_create_desc_label"
|
android:text="@string/audio_content_playlist_create_desc_label"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="16.7sp"
|
android:textSize="16.7sp"
|
||||||
@@ -111,7 +111,7 @@
|
|||||||
android:id="@+id/tv_desc_length"
|
android:id="@+id/tv_desc_length"
|
||||||
android:layout_width="0dp"
|
android:layout_width="0dp"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/audio_content_playlist_create_desc_length_initial"
|
android:text="@string/audio_content_playlist_create_desc_length_initial"
|
||||||
android:textColor="@color/color_777777"
|
android:textColor="@color/color_777777"
|
||||||
android:textSize="13.3sp"
|
android:textSize="13.3sp"
|
||||||
@@ -125,7 +125,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="13.3dp"
|
android:layout_marginTop="13.3dp"
|
||||||
android:background="@drawable/bg_round_corner_6_7_222222"
|
android:background="@drawable/bg_round_corner_6_7_222222"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:importantForAutofill="no"
|
android:importantForAutofill="no"
|
||||||
android:inputType="textWebEditText"
|
android:inputType="textWebEditText"
|
||||||
android:maxLines="1"
|
android:maxLines="1"
|
||||||
@@ -145,7 +145,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="26.7dp"
|
android:layout_marginTop="26.7dp"
|
||||||
android:drawablePadding="8dp"
|
android:drawablePadding="8dp"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center_vertical"
|
android:gravity="center_vertical"
|
||||||
android:text="@string/audio_content_playlist_create_add_content"
|
android:text="@string/audio_content_playlist_create_add_content"
|
||||||
android:textColor="@color/color_3bb9f1"
|
android:textColor="@color/color_3bb9f1"
|
||||||
|
|||||||
@@ -20,7 +20,7 @@
|
|||||||
android:layout_centerVertical="true"
|
android:layout_centerVertical="true"
|
||||||
android:drawablePadding="6.7dp"
|
android:drawablePadding="6.7dp"
|
||||||
android:ellipsize="end"
|
android:ellipsize="end"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:minHeight="48dp"
|
android:minHeight="48dp"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
@@ -171,7 +171,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginStart="13.3dp"
|
android:layout_marginStart="13.3dp"
|
||||||
android:ellipsize="end"
|
android:ellipsize="end"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:maxLines="2"
|
android:maxLines="2"
|
||||||
android:textColor="@color/color_d2d2d2"
|
android:textColor="@color/color_d2d2d2"
|
||||||
android:textSize="18.3sp"
|
android:textSize="18.3sp"
|
||||||
@@ -186,7 +186,7 @@
|
|||||||
android:layout_height="0dp"
|
android:layout_height="0dp"
|
||||||
android:layout_marginTop="6.7dp"
|
android:layout_marginTop="6.7dp"
|
||||||
android:ellipsize="end"
|
android:ellipsize="end"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:maxLength="100"
|
android:maxLength="100"
|
||||||
android:textColor="@color/color_909090"
|
android:textColor="@color/color_909090"
|
||||||
android:textSize="12sp"
|
android:textSize="12sp"
|
||||||
@@ -201,7 +201,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="13.3dp"
|
android:layout_marginTop="13.3dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center_vertical"
|
android:gravity="center_vertical"
|
||||||
android:textColor="@color/color_909090"
|
android:textColor="@color/color_909090"
|
||||||
android:textSize="13.3sp"
|
android:textSize="13.3sp"
|
||||||
@@ -213,7 +213,7 @@
|
|||||||
android:id="@+id/tv_content_count"
|
android:id="@+id/tv_content_count"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center_vertical"
|
android:gravity="center_vertical"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="13.3sp"
|
android:textSize="13.3sp"
|
||||||
@@ -244,7 +244,7 @@
|
|||||||
android:id="@+id/tv_play"
|
android:id="@+id/tv_play"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:paddingVertical="11dp"
|
android:paddingVertical="11dp"
|
||||||
android:text="@string/audio_content_playlist_detail_play"
|
android:text="@string/audio_content_playlist_detail_play"
|
||||||
android:textColor="@color/white"
|
android:textColor="@color/white"
|
||||||
@@ -274,7 +274,7 @@
|
|||||||
android:id="@+id/tv_shuffle"
|
android:id="@+id/tv_shuffle"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:paddingVertical="11dp"
|
android:paddingVertical="11dp"
|
||||||
android:text="@string/audio_content_playlist_detail_shuffle"
|
android:text="@string/audio_content_playlist_detail_shuffle"
|
||||||
android:textColor="@color/white"
|
android:textColor="@color/white"
|
||||||
@@ -327,7 +327,7 @@
|
|||||||
app:layout_constraintStart_toEndOf="@+id/iv_player_cover"
|
app:layout_constraintStart_toEndOf="@+id/iv_player_cover"
|
||||||
app:layout_constraintTop_toTopOf="@+id/iv_player_cover"
|
app:layout_constraintTop_toTopOf="@+id/iv_player_cover"
|
||||||
tools:text="JFLA 커버곡 Avicii for your self"
|
tools:text="JFLA 커버곡 Avicii for your self"
|
||||||
android:fontFamily="@font/pretendard_medium" />
|
android:fontFamily="@font/medium" />
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
android:id="@+id/tv_player_nickname"
|
android:id="@+id/tv_player_nickname"
|
||||||
@@ -341,7 +341,7 @@
|
|||||||
app:layout_constraintTop_toBottomOf="@+id/tv_player_title"
|
app:layout_constraintTop_toBottomOf="@+id/tv_player_title"
|
||||||
tools:ignore="SmallSp"
|
tools:ignore="SmallSp"
|
||||||
tools:text="JFLA 커버곡 Avicii for your self"
|
tools:text="JFLA 커버곡 Avicii for your self"
|
||||||
android:fontFamily="@font/pretendard_medium" />
|
android:fontFamily="@font/medium" />
|
||||||
|
|
||||||
<ImageView
|
<ImageView
|
||||||
android:id="@+id/iv_play_or_pause"
|
android:id="@+id/iv_play_or_pause"
|
||||||
|
|||||||
@@ -23,7 +23,7 @@
|
|||||||
android:layout_centerVertical="true"
|
android:layout_centerVertical="true"
|
||||||
android:drawablePadding="6.7dp"
|
android:drawablePadding="6.7dp"
|
||||||
android:ellipsize="end"
|
android:ellipsize="end"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center_vertical"
|
android:gravity="center_vertical"
|
||||||
android:minHeight="48dp"
|
android:minHeight="48dp"
|
||||||
android:paddingHorizontal="13.3dp"
|
android:paddingHorizontal="13.3dp"
|
||||||
@@ -39,7 +39,7 @@
|
|||||||
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/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:minHeight="48dp"
|
android:minHeight="48dp"
|
||||||
android:paddingHorizontal="13.3dp"
|
android:paddingHorizontal="13.3dp"
|
||||||
@@ -54,7 +54,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginStart="13.3dp"
|
android:layout_marginStart="13.3dp"
|
||||||
android:layout_marginTop="26.7dp"
|
android:layout_marginTop="26.7dp"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/audio_content_playlist_modify_title_label"
|
android:text="@string/audio_content_playlist_modify_title_label"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="16.7sp"
|
android:textSize="16.7sp"
|
||||||
@@ -66,7 +66,7 @@
|
|||||||
android:layout_width="0dp"
|
android:layout_width="0dp"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginEnd="13.3dp"
|
android:layout_marginEnd="13.3dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/audio_content_playlist_create_title_length_initial"
|
android:text="@string/audio_content_playlist_create_title_length_initial"
|
||||||
android:textColor="@color/color_777777"
|
android:textColor="@color/color_777777"
|
||||||
android:textSize="13.3sp"
|
android:textSize="13.3sp"
|
||||||
@@ -80,7 +80,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="13.3dp"
|
android:layout_marginTop="13.3dp"
|
||||||
android:background="@drawable/bg_round_corner_6_7_222222"
|
android:background="@drawable/bg_round_corner_6_7_222222"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:importantForAutofill="no"
|
android:importantForAutofill="no"
|
||||||
android:inputType="textWebEditText"
|
android:inputType="textWebEditText"
|
||||||
android:maxLines="1"
|
android:maxLines="1"
|
||||||
@@ -99,7 +99,7 @@
|
|||||||
android:layout_width="0dp"
|
android:layout_width="0dp"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="26.7dp"
|
android:layout_marginTop="26.7dp"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/audio_content_playlist_modify_desc_label"
|
android:text="@string/audio_content_playlist_modify_desc_label"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="16.7sp"
|
android:textSize="16.7sp"
|
||||||
@@ -110,7 +110,7 @@
|
|||||||
android:id="@+id/tv_desc_length"
|
android:id="@+id/tv_desc_length"
|
||||||
android:layout_width="0dp"
|
android:layout_width="0dp"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/audio_content_playlist_create_desc_length_initial"
|
android:text="@string/audio_content_playlist_create_desc_length_initial"
|
||||||
android:textColor="@color/color_777777"
|
android:textColor="@color/color_777777"
|
||||||
android:textSize="13.3sp"
|
android:textSize="13.3sp"
|
||||||
@@ -124,7 +124,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="13.3dp"
|
android:layout_marginTop="13.3dp"
|
||||||
android:background="@drawable/bg_round_corner_6_7_222222"
|
android:background="@drawable/bg_round_corner_6_7_222222"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:importantForAutofill="no"
|
android:importantForAutofill="no"
|
||||||
android:inputType="textWebEditText"
|
android:inputType="textWebEditText"
|
||||||
android:maxLines="1"
|
android:maxLines="1"
|
||||||
@@ -144,7 +144,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="26.7dp"
|
android:layout_marginTop="26.7dp"
|
||||||
android:drawablePadding="3.5dp"
|
android:drawablePadding="3.5dp"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center_vertical"
|
android:gravity="center_vertical"
|
||||||
android:text="@string/audio_content_playlist_create_add_content"
|
android:text="@string/audio_content_playlist_create_add_content"
|
||||||
android:textColor="@color/color_3bb9f1"
|
android:textColor="@color/color_3bb9f1"
|
||||||
|
|||||||
@@ -22,7 +22,7 @@
|
|||||||
android:id="@+id/tv_date"
|
android:id="@+id/tv_date"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="14.7sp" />
|
android:textSize="14.7sp" />
|
||||||
|
|
||||||
@@ -30,7 +30,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="8dp"
|
android:layout_marginTop="8dp"
|
||||||
android:fontFamily="@font/pretendard_light"
|
android:fontFamily="@font/light"
|
||||||
android:text="@string/screen_audio_content_ranking_notice"
|
android:text="@string/screen_audio_content_ranking_notice"
|
||||||
android:textColor="@color/color_bbbbbb"
|
android:textColor="@color/color_bbbbbb"
|
||||||
android:textSize="13.3sp" />
|
android:textSize="13.3sp" />
|
||||||
|
|||||||
@@ -36,7 +36,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginHorizontal="13.3dp"
|
android:layout_marginHorizontal="13.3dp"
|
||||||
android:layout_marginTop="13.3dp"
|
android:layout_marginTop="13.3dp"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_audio_content_upload_thumbnail_label"
|
android:text="@string/screen_audio_content_upload_thumbnail_label"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="16.7sp" />
|
android:textSize="16.7sp" />
|
||||||
@@ -80,7 +80,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginHorizontal="13.3dp"
|
android:layout_marginHorizontal="13.3dp"
|
||||||
android:layout_marginTop="13.3dp"
|
android:layout_marginTop="13.3dp"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_audio_content_upload_section_upload"
|
android:text="@string/screen_audio_content_upload_section_upload"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="16.7sp" />
|
android:textSize="16.7sp" />
|
||||||
@@ -92,7 +92,7 @@
|
|||||||
android:layout_marginHorizontal="13.3dp"
|
android:layout_marginHorizontal="13.3dp"
|
||||||
android:layout_marginTop="13.3dp"
|
android:layout_marginTop="13.3dp"
|
||||||
android:background="@drawable/bg_round_corner_5_3_13181b_3bb9f1"
|
android:background="@drawable/bg_round_corner_5_3_13181b_3bb9f1"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:paddingVertical="8dp"
|
android:paddingVertical="8dp"
|
||||||
android:text="@string/screen_audio_content_upload_select_file"
|
android:text="@string/screen_audio_content_upload_select_file"
|
||||||
@@ -115,7 +115,7 @@
|
|||||||
<TextView
|
<TextView
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_audio_content_upload_title_label"
|
android:text="@string/screen_audio_content_upload_title_label"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="16.7sp" />
|
android:textSize="16.7sp" />
|
||||||
@@ -126,7 +126,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="13.3dp"
|
android:layout_marginTop="13.3dp"
|
||||||
android:background="@drawable/bg_round_corner_6_7_222222"
|
android:background="@drawable/bg_round_corner_6_7_222222"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:hint="@string/screen_audio_content_upload_title_hint"
|
android:hint="@string/screen_audio_content_upload_title_hint"
|
||||||
android:importantForAutofill="no"
|
android:importantForAutofill="no"
|
||||||
android:inputType="textWebEditText"
|
android:inputType="textWebEditText"
|
||||||
@@ -155,7 +155,7 @@
|
|||||||
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:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:lineSpacingExtra="5sp"
|
android:lineSpacingExtra="5sp"
|
||||||
android:text="@string/screen_audio_content_upload_content_label"
|
android:text="@string/screen_audio_content_upload_content_label"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
@@ -170,7 +170,7 @@
|
|||||||
android:id="@+id/tv_number_of_characters"
|
android:id="@+id/tv_number_of_characters"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_audio_content_upload_char_count_format"
|
android:text="@string/screen_audio_content_upload_char_count_format"
|
||||||
android:textColor="@color/color_ff5c49"
|
android:textColor="@color/color_ff5c49"
|
||||||
android:textSize="13.3sp" />
|
android:textSize="13.3sp" />
|
||||||
@@ -178,7 +178,7 @@
|
|||||||
<TextView
|
<TextView
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_audio_content_upload_char_limit_suffix"
|
android:text="@string/screen_audio_content_upload_char_limit_suffix"
|
||||||
android:textColor="@color/color_777777"
|
android:textColor="@color/color_777777"
|
||||||
android:textSize="13.3sp" />
|
android:textSize="13.3sp" />
|
||||||
@@ -192,7 +192,7 @@
|
|||||||
android:layout_height="200dp"
|
android:layout_height="200dp"
|
||||||
android:layout_marginTop="6.7dp"
|
android:layout_marginTop="6.7dp"
|
||||||
android:background="@drawable/bg_round_corner_6_7_222222"
|
android:background="@drawable/bg_round_corner_6_7_222222"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="top"
|
android:gravity="top"
|
||||||
android:hint="@string/screen_audio_content_upload_content_hint"
|
android:hint="@string/screen_audio_content_upload_content_hint"
|
||||||
android:importantForAutofill="no"
|
android:importantForAutofill="no"
|
||||||
@@ -215,7 +215,7 @@
|
|||||||
<TextView
|
<TextView
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_audio_content_upload_theme_label"
|
android:text="@string/screen_audio_content_upload_theme_label"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="16.7sp" />
|
android:textSize="16.7sp" />
|
||||||
@@ -242,7 +242,7 @@
|
|||||||
android:id="@+id/tv_theme"
|
android:id="@+id/tv_theme"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_audio_content_upload_theme_select"
|
android:text="@string/screen_audio_content_upload_theme_select"
|
||||||
android:textColor="@color/color_80d8ff"
|
android:textColor="@color/color_80d8ff"
|
||||||
android:textSize="16.7sp" />
|
android:textSize="16.7sp" />
|
||||||
@@ -259,7 +259,7 @@
|
|||||||
<TextView
|
<TextView
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_audio_content_upload_tag_label"
|
android:text="@string/screen_audio_content_upload_tag_label"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="16.7sp" />
|
android:textSize="16.7sp" />
|
||||||
@@ -270,7 +270,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="13.3dp"
|
android:layout_marginTop="13.3dp"
|
||||||
android:background="@drawable/bg_round_corner_6_7_222222"
|
android:background="@drawable/bg_round_corner_6_7_222222"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:hint="@string/screen_audio_content_upload_tag_hint"
|
android:hint="@string/screen_audio_content_upload_tag_hint"
|
||||||
android:importantForAutofill="no"
|
android:importantForAutofill="no"
|
||||||
android:inputType="textWebEditText"
|
android:inputType="textWebEditText"
|
||||||
@@ -294,7 +294,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:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:lineSpacingExtra="5sp"
|
android:lineSpacingExtra="5sp"
|
||||||
android:text="@string/screen_audio_content_upload_price_section_title"
|
android:text="@string/screen_audio_content_upload_price_section_title"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
@@ -330,7 +330,7 @@
|
|||||||
android:id="@+id/tv_price_free"
|
android:id="@+id/tv_price_free"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_audio_content_upload_price_free"
|
android:text="@string/screen_audio_content_upload_price_free"
|
||||||
android:textColor="@color/color_3bb9f1"
|
android:textColor="@color/color_3bb9f1"
|
||||||
android:textSize="14.7sp" />
|
android:textSize="14.7sp" />
|
||||||
@@ -359,7 +359,7 @@
|
|||||||
android:id="@+id/tv_price_paid"
|
android:id="@+id/tv_price_paid"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_audio_content_upload_price_paid"
|
android:text="@string/screen_audio_content_upload_price_paid"
|
||||||
android:textColor="@color/color_3bb9f1"
|
android:textColor="@color/color_3bb9f1"
|
||||||
android:textSize="14.7sp" />
|
android:textSize="14.7sp" />
|
||||||
@@ -372,7 +372,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginHorizontal="13.3dp"
|
android:layout_marginHorizontal="13.3dp"
|
||||||
android:layout_marginTop="26.7dp"
|
android:layout_marginTop="26.7dp"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:lineSpacingExtra="5sp"
|
android:lineSpacingExtra="5sp"
|
||||||
android:text="@string/screen_audio_content_upload_keep_section_title"
|
android:text="@string/screen_audio_content_upload_keep_section_title"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
@@ -408,7 +408,7 @@
|
|||||||
android:id="@+id/tv_both"
|
android:id="@+id/tv_both"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_audio_content_upload_purchase_option_both"
|
android:text="@string/screen_audio_content_upload_purchase_option_both"
|
||||||
android:textColor="@color/color_3bb9f1"
|
android:textColor="@color/color_3bb9f1"
|
||||||
android:textSize="14.7sp" />
|
android:textSize="14.7sp" />
|
||||||
@@ -437,7 +437,7 @@
|
|||||||
android:id="@+id/tv_buy_only"
|
android:id="@+id/tv_buy_only"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_audio_content_upload_purchase_option_buy_only"
|
android:text="@string/screen_audio_content_upload_purchase_option_buy_only"
|
||||||
android:textColor="@color/color_3bb9f1"
|
android:textColor="@color/color_3bb9f1"
|
||||||
android:textSize="14.7sp" />
|
android:textSize="14.7sp" />
|
||||||
@@ -465,7 +465,7 @@
|
|||||||
android:id="@+id/tv_rent_only"
|
android:id="@+id/tv_rent_only"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_audio_content_upload_purchase_option_rent_only"
|
android:text="@string/screen_audio_content_upload_purchase_option_rent_only"
|
||||||
android:textColor="@color/color_3bb9f1"
|
android:textColor="@color/color_3bb9f1"
|
||||||
android:textSize="14.7sp" />
|
android:textSize="14.7sp" />
|
||||||
@@ -485,7 +485,7 @@
|
|||||||
android:id="@+id/tv_price_title"
|
android:id="@+id/tv_price_title"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_audio_content_upload_price_title_keep"
|
android:text="@string/screen_audio_content_upload_price_title_keep"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="13.3sp" />
|
android:textSize="13.3sp" />
|
||||||
@@ -505,7 +505,7 @@
|
|||||||
android:layout_centerVertical="true"
|
android:layout_centerVertical="true"
|
||||||
android:layout_toStartOf="@+id/tv_price_unit"
|
android:layout_toStartOf="@+id/tv_price_unit"
|
||||||
android:background="@null"
|
android:background="@null"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:importantForAutofill="no"
|
android:importantForAutofill="no"
|
||||||
android:inputType="numberSigned"
|
android:inputType="numberSigned"
|
||||||
android:paddingVertical="13.3dp"
|
android:paddingVertical="13.3dp"
|
||||||
@@ -523,7 +523,7 @@
|
|||||||
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/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_audio_content_upload_price_unit_can"
|
android:text="@string/screen_audio_content_upload_price_unit_can"
|
||||||
android:textColor="@color/color_777777"
|
android:textColor="@color/color_777777"
|
||||||
android:textSize="13.3sp" />
|
android:textSize="13.3sp" />
|
||||||
@@ -539,7 +539,7 @@
|
|||||||
android:id="@+id/tv_service_date"
|
android:id="@+id/tv_service_date"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_audio_content_upload_service_period_until_end"
|
android:text="@string/screen_audio_content_upload_service_period_until_end"
|
||||||
android:textColor="@color/color_777777"
|
android:textColor="@color/color_777777"
|
||||||
android:textSize="13.3sp" />
|
android:textSize="13.3sp" />
|
||||||
@@ -548,7 +548,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="3dp"
|
android:layout_marginTop="3dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_audio_content_upload_price_rent_rate_notice"
|
android:text="@string/screen_audio_content_upload_price_rent_rate_notice"
|
||||||
android:textColor="@color/color_777777"
|
android:textColor="@color/color_777777"
|
||||||
android:textSize="13.3sp" />
|
android:textSize="13.3sp" />
|
||||||
@@ -557,7 +557,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="3dp"
|
android:layout_marginTop="3dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_audio_content_upload_price_min_notice"
|
android:text="@string/screen_audio_content_upload_price_min_notice"
|
||||||
android:textColor="@color/color_777777"
|
android:textColor="@color/color_777777"
|
||||||
android:textSize="13.3sp" />
|
android:textSize="13.3sp" />
|
||||||
@@ -569,7 +569,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginHorizontal="13.3dp"
|
android:layout_marginHorizontal="13.3dp"
|
||||||
android:layout_marginTop="30dp"
|
android:layout_marginTop="30dp"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:lineSpacingExtra="5sp"
|
android:lineSpacingExtra="5sp"
|
||||||
android:text="@string/screen_audio_content_upload_limited_section_title"
|
android:text="@string/screen_audio_content_upload_limited_section_title"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
@@ -605,7 +605,7 @@
|
|||||||
android:id="@+id/tv_not_limited"
|
android:id="@+id/tv_not_limited"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_audio_content_upload_limited_unlimited"
|
android:text="@string/screen_audio_content_upload_limited_unlimited"
|
||||||
android:textColor="@color/color_3bb9f1"
|
android:textColor="@color/color_3bb9f1"
|
||||||
android:textSize="14.7sp" />
|
android:textSize="14.7sp" />
|
||||||
@@ -634,7 +634,7 @@
|
|||||||
android:id="@+id/tv_limited"
|
android:id="@+id/tv_limited"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_audio_content_upload_limited_limited"
|
android:text="@string/screen_audio_content_upload_limited_limited"
|
||||||
android:textColor="@color/color_3bb9f1"
|
android:textColor="@color/color_3bb9f1"
|
||||||
android:textSize="14.7sp" />
|
android:textSize="14.7sp" />
|
||||||
@@ -648,7 +648,7 @@
|
|||||||
android:layout_marginHorizontal="13.3dp"
|
android:layout_marginHorizontal="13.3dp"
|
||||||
android:layout_marginTop="13.3dp"
|
android:layout_marginTop="13.3dp"
|
||||||
android:background="@drawable/bg_round_corner_6_7_222222"
|
android:background="@drawable/bg_round_corner_6_7_222222"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:hint="@string/screen_audio_content_upload_limited_hint"
|
android:hint="@string/screen_audio_content_upload_limited_hint"
|
||||||
android:importantForAutofill="no"
|
android:importantForAutofill="no"
|
||||||
android:inputType="numberSigned"
|
android:inputType="numberSigned"
|
||||||
@@ -667,7 +667,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginHorizontal="13.3dp"
|
android:layout_marginHorizontal="13.3dp"
|
||||||
android:layout_marginTop="30dp"
|
android:layout_marginTop="30dp"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:lineSpacingExtra="5sp"
|
android:lineSpacingExtra="5sp"
|
||||||
android:text="@string/screen_audio_content_upload_point_section_title"
|
android:text="@string/screen_audio_content_upload_point_section_title"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
@@ -703,7 +703,7 @@
|
|||||||
android:id="@+id/tv_available_point"
|
android:id="@+id/tv_available_point"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_audio_content_upload_point_available"
|
android:text="@string/screen_audio_content_upload_point_available"
|
||||||
android:textColor="@color/color_3bb9f1"
|
android:textColor="@color/color_3bb9f1"
|
||||||
android:textSize="14.7sp" />
|
android:textSize="14.7sp" />
|
||||||
@@ -732,7 +732,7 @@
|
|||||||
android:id="@+id/tv_not_available_point"
|
android:id="@+id/tv_not_available_point"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_audio_content_upload_point_unavailable"
|
android:text="@string/screen_audio_content_upload_point_unavailable"
|
||||||
android:textColor="@color/color_3bb9f1"
|
android:textColor="@color/color_3bb9f1"
|
||||||
android:textSize="14.7sp" />
|
android:textSize="14.7sp" />
|
||||||
@@ -750,7 +750,7 @@
|
|||||||
<TextView
|
<TextView
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:lineSpacingExtra="5sp"
|
android:lineSpacingExtra="5sp"
|
||||||
android:text="@string/screen_audio_content_upload_preview_section_title"
|
android:text="@string/screen_audio_content_upload_preview_section_title"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
@@ -784,7 +784,7 @@
|
|||||||
android:id="@+id/tv_preview_yes"
|
android:id="@+id/tv_preview_yes"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_audio_content_upload_preview_generate"
|
android:text="@string/screen_audio_content_upload_preview_generate"
|
||||||
android:textColor="@color/color_3bb9f1"
|
android:textColor="@color/color_3bb9f1"
|
||||||
android:textSize="14.7sp" />
|
android:textSize="14.7sp" />
|
||||||
@@ -813,7 +813,7 @@
|
|||||||
android:id="@+id/tv_preview_no"
|
android:id="@+id/tv_preview_no"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_audio_content_upload_preview_not_generate"
|
android:text="@string/screen_audio_content_upload_preview_not_generate"
|
||||||
android:textColor="@color/color_3bb9f1"
|
android:textColor="@color/color_3bb9f1"
|
||||||
android:textSize="14.7sp" />
|
android:textSize="14.7sp" />
|
||||||
@@ -830,7 +830,7 @@
|
|||||||
<TextView
|
<TextView
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:lineSpacingExtra="5sp"
|
android:lineSpacingExtra="5sp"
|
||||||
android:text="@string/screen_audio_content_upload_preview_time_title"
|
android:text="@string/screen_audio_content_upload_preview_time_title"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
@@ -840,7 +840,7 @@
|
|||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="10dp"
|
android:layout_marginTop="10dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_audio_content_upload_preview_time_desc"
|
android:text="@string/screen_audio_content_upload_preview_time_desc"
|
||||||
android:textColor="@color/color_777777"
|
android:textColor="@color/color_777777"
|
||||||
android:textSize="13.3sp" />
|
android:textSize="13.3sp" />
|
||||||
@@ -860,7 +860,7 @@
|
|||||||
<TextView
|
<TextView
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_audio_content_upload_preview_start_time"
|
android:text="@string/screen_audio_content_upload_preview_start_time"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="13.3sp" />
|
android:textSize="13.3sp" />
|
||||||
@@ -871,7 +871,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="5.3dp"
|
android:layout_marginTop="5.3dp"
|
||||||
android:background="@drawable/bg_round_corner_6_7_222222"
|
android:background="@drawable/bg_round_corner_6_7_222222"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:hint="@string/screen_audio_content_upload_preview_start_time_default"
|
android:hint="@string/screen_audio_content_upload_preview_start_time_default"
|
||||||
android:importantForAutofill="no"
|
android:importantForAutofill="no"
|
||||||
@@ -896,7 +896,7 @@
|
|||||||
<TextView
|
<TextView
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_audio_content_upload_preview_end_time"
|
android:text="@string/screen_audio_content_upload_preview_end_time"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="13.3sp" />
|
android:textSize="13.3sp" />
|
||||||
@@ -907,7 +907,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="5.3dp"
|
android:layout_marginTop="5.3dp"
|
||||||
android:background="@drawable/bg_round_corner_6_7_222222"
|
android:background="@drawable/bg_round_corner_6_7_222222"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:hint="@string/screen_audio_content_upload_preview_end_time_default"
|
android:hint="@string/screen_audio_content_upload_preview_end_time_default"
|
||||||
android:importantForAutofill="no"
|
android:importantForAutofill="no"
|
||||||
@@ -936,7 +936,7 @@
|
|||||||
<TextView
|
<TextView
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:lineSpacingExtra="5sp"
|
android:lineSpacingExtra="5sp"
|
||||||
android:text="@string/screen_audio_content_upload_age_section_title"
|
android:text="@string/screen_audio_content_upload_age_section_title"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
@@ -970,7 +970,7 @@
|
|||||||
android:id="@+id/tv_age_all"
|
android:id="@+id/tv_age_all"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_audio_content_upload_age_all"
|
android:text="@string/screen_audio_content_upload_age_all"
|
||||||
android:textColor="@color/color_3bb9f1"
|
android:textColor="@color/color_3bb9f1"
|
||||||
android:textSize="14.7sp" />
|
android:textSize="14.7sp" />
|
||||||
@@ -999,7 +999,7 @@
|
|||||||
android:id="@+id/tv_age_19"
|
android:id="@+id/tv_age_19"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_audio_content_upload_age_19"
|
android:text="@string/screen_audio_content_upload_age_19"
|
||||||
android:textColor="@color/color_3bb9f1"
|
android:textColor="@color/color_3bb9f1"
|
||||||
android:textSize="14.7sp" />
|
android:textSize="14.7sp" />
|
||||||
@@ -1010,7 +1010,7 @@
|
|||||||
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"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_audio_content_upload_age_notice"
|
android:text="@string/screen_audio_content_upload_age_notice"
|
||||||
android:textColor="@color/color_dd4500"
|
android:textColor="@color/color_dd4500"
|
||||||
android:textSize="13.3sp" />
|
android:textSize="13.3sp" />
|
||||||
@@ -1027,7 +1027,7 @@
|
|||||||
<TextView
|
<TextView
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:lineSpacingExtra="5sp"
|
android:lineSpacingExtra="5sp"
|
||||||
android:text="@string/screen_audio_content_upload_comment_section_title"
|
android:text="@string/screen_audio_content_upload_comment_section_title"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
@@ -1061,7 +1061,7 @@
|
|||||||
android:id="@+id/tv_comment_yes"
|
android:id="@+id/tv_comment_yes"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_audio_content_upload_comment_allow"
|
android:text="@string/screen_audio_content_upload_comment_allow"
|
||||||
android:textColor="@color/color_3bb9f1"
|
android:textColor="@color/color_3bb9f1"
|
||||||
android:textSize="14.7sp" />
|
android:textSize="14.7sp" />
|
||||||
@@ -1090,7 +1090,7 @@
|
|||||||
android:id="@+id/tv_comment_no"
|
android:id="@+id/tv_comment_no"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_audio_content_upload_comment_disallow"
|
android:text="@string/screen_audio_content_upload_comment_disallow"
|
||||||
android:textColor="@color/color_3bb9f1"
|
android:textColor="@color/color_3bb9f1"
|
||||||
android:textSize="14.7sp" />
|
android:textSize="14.7sp" />
|
||||||
@@ -1109,7 +1109,7 @@
|
|||||||
<TextView
|
<TextView
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:lineSpacingExtra="5sp"
|
android:lineSpacingExtra="5sp"
|
||||||
android:text="@string/screen_audio_content_upload_reservation_section_title"
|
android:text="@string/screen_audio_content_upload_reservation_section_title"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
@@ -1143,7 +1143,7 @@
|
|||||||
android:id="@+id/tv_active_now"
|
android:id="@+id/tv_active_now"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_audio_content_upload_active_now"
|
android:text="@string/screen_audio_content_upload_active_now"
|
||||||
android:textColor="@color/color_3bb9f1"
|
android:textColor="@color/color_3bb9f1"
|
||||||
android:textSize="14.7sp" />
|
android:textSize="14.7sp" />
|
||||||
@@ -1172,7 +1172,7 @@
|
|||||||
android:id="@+id/tv_active_reservation"
|
android:id="@+id/tv_active_reservation"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_audio_content_upload_active_reservation"
|
android:text="@string/screen_audio_content_upload_active_reservation"
|
||||||
android:textColor="@color/color_3bb9f1"
|
android:textColor="@color/color_3bb9f1"
|
||||||
android:textSize="14.7sp" />
|
android:textSize="14.7sp" />
|
||||||
@@ -1199,7 +1199,7 @@
|
|||||||
<TextView
|
<TextView
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_audio_content_upload_reservation_date"
|
android:text="@string/screen_audio_content_upload_reservation_date"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="13.3sp" />
|
android:textSize="13.3sp" />
|
||||||
@@ -1210,7 +1210,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="6.7dp"
|
android:layout_marginTop="6.7dp"
|
||||||
android:background="@drawable/bg_round_corner_6_7_13181b_3bb9f1"
|
android:background="@drawable/bg_round_corner_6_7_13181b_3bb9f1"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:paddingVertical="15.3dp"
|
android:paddingVertical="15.3dp"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
@@ -1229,7 +1229,7 @@
|
|||||||
<TextView
|
<TextView
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_audio_content_upload_reservation_time"
|
android:text="@string/screen_audio_content_upload_reservation_time"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="13.3sp" />
|
android:textSize="13.3sp" />
|
||||||
@@ -1240,7 +1240,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="6.7dp"
|
android:layout_marginTop="6.7dp"
|
||||||
android:background="@drawable/bg_round_corner_6_7_13181b_3bb9f1"
|
android:background="@drawable/bg_round_corner_6_7_13181b_3bb9f1"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:paddingVertical="15.3dp"
|
android:paddingVertical="15.3dp"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
@@ -1265,7 +1265,7 @@
|
|||||||
android:layout_marginEnd="6.7dp"
|
android:layout_marginEnd="6.7dp"
|
||||||
android:layout_weight="1"
|
android:layout_weight="1"
|
||||||
android:background="@drawable/bg_round_corner_6_7_13181b_3bb9f1"
|
android:background="@drawable/bg_round_corner_6_7_13181b_3bb9f1"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:text="@string/screen_audio_content_upload_cancel"
|
android:text="@string/screen_audio_content_upload_cancel"
|
||||||
android:textColor="@color/color_3bb9f1"
|
android:textColor="@color/color_3bb9f1"
|
||||||
@@ -1278,7 +1278,7 @@
|
|||||||
android:layout_marginStart="6.7dp"
|
android:layout_marginStart="6.7dp"
|
||||||
android:layout_weight="1"
|
android:layout_weight="1"
|
||||||
android:background="@drawable/bg_round_corner_6_7_3bb9f1"
|
android:background="@drawable/bg_round_corner_6_7_3bb9f1"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:text="@string/screen_audio_content_upload_submit"
|
android:text="@string/screen_audio_content_upload_submit"
|
||||||
android:textColor="@color/white"
|
android:textColor="@color/white"
|
||||||
|
|||||||
@@ -46,7 +46,7 @@
|
|||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="15dp"
|
android:layout_marginTop="15dp"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_audition_detail_info_title"
|
android:text="@string/screen_audition_detail_info_title"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="14.7sp"
|
android:textSize="14.7sp"
|
||||||
@@ -60,7 +60,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="15dp"
|
android:layout_marginTop="15dp"
|
||||||
android:ellipsize="end"
|
android:ellipsize="end"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:lineSpacingExtra="5dp"
|
android:lineSpacingExtra="5dp"
|
||||||
android:maxLines="3"
|
android:maxLines="3"
|
||||||
android:textColor="@color/color_777777"
|
android:textColor="@color/color_777777"
|
||||||
@@ -73,7 +73,7 @@
|
|||||||
android:layout_gravity="center"
|
android:layout_gravity="center"
|
||||||
android:layout_marginTop="7dp"
|
android:layout_marginTop="7dp"
|
||||||
android:drawablePadding="6.7dp"
|
android:drawablePadding="6.7dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:text="@string/screen_audition_detail_expand"
|
android:text="@string/screen_audition_detail_expand"
|
||||||
android:textColor="@color/color_bbbbbb"
|
android:textColor="@color/color_bbbbbb"
|
||||||
@@ -88,7 +88,7 @@
|
|||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="18dp"
|
android:layout_marginTop="18dp"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_audition_detail_roles_title"
|
android:text="@string/screen_audition_detail_roles_title"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="14.7sp" />
|
android:textSize="14.7sp" />
|
||||||
|
|||||||
@@ -52,7 +52,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_weight="1"
|
android:layout_weight="1"
|
||||||
android:background="@drawable/bg_round_corner_10_transparent_3bb9f1"
|
android:background="@drawable/bg_round_corner_10_transparent_3bb9f1"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:paddingVertical="12dp"
|
android:paddingVertical="12dp"
|
||||||
android:text="@string/screen_audition_role_original_work"
|
android:text="@string/screen_audition_role_original_work"
|
||||||
@@ -66,7 +66,7 @@
|
|||||||
android:layout_marginStart="14dp"
|
android:layout_marginStart="14dp"
|
||||||
android:layout_weight="1"
|
android:layout_weight="1"
|
||||||
android:background="@drawable/bg_round_corner_10_transparent_3bb9f1"
|
android:background="@drawable/bg_round_corner_10_transparent_3bb9f1"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:paddingVertical="12dp"
|
android:paddingVertical="12dp"
|
||||||
android:text="@string/screen_audition_role_script"
|
android:text="@string/screen_audition_role_script"
|
||||||
@@ -80,7 +80,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginHorizontal="13.3dp"
|
android:layout_marginHorizontal="13.3dp"
|
||||||
android:layout_marginTop="15dp"
|
android:layout_marginTop="15dp"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_audition_role_info_title"
|
android:text="@string/screen_audition_role_info_title"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="14.7sp"
|
android:textSize="14.7sp"
|
||||||
@@ -95,7 +95,7 @@
|
|||||||
android:layout_marginHorizontal="13.3dp"
|
android:layout_marginHorizontal="13.3dp"
|
||||||
android:layout_marginTop="15dp"
|
android:layout_marginTop="15dp"
|
||||||
android:ellipsize="end"
|
android:ellipsize="end"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:maxLines="3"
|
android:maxLines="3"
|
||||||
android:lineSpacingExtra="5dp"
|
android:lineSpacingExtra="5dp"
|
||||||
android:textColor="@color/color_777777"
|
android:textColor="@color/color_777777"
|
||||||
@@ -112,7 +112,7 @@
|
|||||||
android:layout_marginTop="7dp"
|
android:layout_marginTop="7dp"
|
||||||
android:drawableStart="@drawable/ic_live_detail_bottom"
|
android:drawableStart="@drawable/ic_live_detail_bottom"
|
||||||
android:drawablePadding="6.7dp"
|
android:drawablePadding="6.7dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:text="@string/screen_audition_detail_expand"
|
android:text="@string/screen_audition_detail_expand"
|
||||||
android:textColor="@color/color_bbbbbb"
|
android:textColor="@color/color_bbbbbb"
|
||||||
@@ -134,7 +134,7 @@
|
|||||||
<TextView
|
<TextView
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_audition_role_applicant_prefix"
|
android:text="@string/screen_audition_role_applicant_prefix"
|
||||||
android:textColor="@color/color_bbbbbb"
|
android:textColor="@color/color_bbbbbb"
|
||||||
android:textSize="10.7sp" />
|
android:textSize="10.7sp" />
|
||||||
@@ -143,7 +143,7 @@
|
|||||||
android:id="@+id/tv_applicant_count"
|
android:id="@+id/tv_applicant_count"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:textColor="@color/color_3bb9f1"
|
android:textColor="@color/color_3bb9f1"
|
||||||
android:textSize="10.7sp"
|
android:textSize="10.7sp"
|
||||||
tools:text=" 24" />
|
tools:text=" 24" />
|
||||||
@@ -151,7 +151,7 @@
|
|||||||
<TextView
|
<TextView
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_audition_role_applicant_suffix"
|
android:text="@string/screen_audition_role_applicant_suffix"
|
||||||
android:textColor="@color/color_bbbbbb"
|
android:textColor="@color/color_bbbbbb"
|
||||||
android:textSize="10.7sp" />
|
android:textSize="10.7sp" />
|
||||||
@@ -162,7 +162,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginEnd="13.3dp"
|
android:layout_marginEnd="13.3dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_audition_sort_likes"
|
android:text="@string/screen_audition_sort_likes"
|
||||||
android:textColor="@color/color_bbbbbb"
|
android:textColor="@color/color_bbbbbb"
|
||||||
android:textSize="10.7sp"
|
android:textSize="10.7sp"
|
||||||
@@ -175,7 +175,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginEnd="13.3dp"
|
android:layout_marginEnd="13.3dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_audition_sort_newest"
|
android:text="@string/screen_audition_sort_newest"
|
||||||
android:textColor="@color/color_3bb9f1"
|
android:textColor="@color/color_3bb9f1"
|
||||||
android:textSize="10.7sp"
|
android:textSize="10.7sp"
|
||||||
@@ -201,7 +201,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginHorizontal="13.3dp"
|
android:layout_marginHorizontal="13.3dp"
|
||||||
android:layout_marginTop="30dp"
|
android:layout_marginTop="30dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:text="@string/screen_audition_no_applicant"
|
android:text="@string/screen_audition_no_applicant"
|
||||||
android:textColor="@color/color_bbbbbb"
|
android:textColor="@color/color_bbbbbb"
|
||||||
@@ -233,7 +233,7 @@
|
|||||||
android:layout_marginEnd="19dp"
|
android:layout_marginEnd="19dp"
|
||||||
android:layout_marginBottom="19dp"
|
android:layout_marginBottom="19dp"
|
||||||
android:background="@drawable/bg_round_corner_44_3bb9f1"
|
android:background="@drawable/bg_round_corner_44_3bb9f1"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:padding="14dp"
|
android:padding="14dp"
|
||||||
android:text="@string/screen_audition_apply"
|
android:text="@string/screen_audition_apply"
|
||||||
android:textColor="@color/white"
|
android:textColor="@color/white"
|
||||||
|
|||||||
@@ -23,7 +23,7 @@
|
|||||||
<TextView
|
<TextView
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_block_member_total_prefix"
|
android:text="@string/screen_block_member_total_prefix"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="12sp" />
|
android:textSize="12sp" />
|
||||||
@@ -32,7 +32,7 @@
|
|||||||
android:id="@+id/tv_total_count"
|
android:id="@+id/tv_total_count"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:textColor="@color/color_dd4500"
|
android:textColor="@color/color_dd4500"
|
||||||
android:textSize="12sp"
|
android:textSize="12sp"
|
||||||
tools:text=" 10 " />
|
tools:text=" 10 " />
|
||||||
@@ -40,7 +40,7 @@
|
|||||||
<TextView
|
<TextView
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_block_member_total_suffix"
|
android:text="@string/screen_block_member_total_suffix"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="12sp" />
|
android:textSize="12sp" />
|
||||||
@@ -64,7 +64,7 @@
|
|||||||
android:layout_width="0dp"
|
android:layout_width="0dp"
|
||||||
android:layout_height="0dp"
|
android:layout_height="0dp"
|
||||||
android:layout_marginTop="13.3dp"
|
android:layout_marginTop="13.3dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:text="@string/screen_block_member_empty"
|
android:text="@string/screen_block_member_empty"
|
||||||
app:layout_constraintBottom_toBottomOf="parent"
|
app:layout_constraintBottom_toBottomOf="parent"
|
||||||
|
|||||||
@@ -23,7 +23,7 @@
|
|||||||
<TextView
|
<TextView
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_can_coupon_input_title"
|
android:text="@string/screen_can_coupon_input_title"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="16.7sp" />
|
android:textSize="16.7sp" />
|
||||||
@@ -34,7 +34,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="13.3dp"
|
android:layout_marginTop="13.3dp"
|
||||||
android:background="@drawable/bg_round_corner_6_7_222222"
|
android:background="@drawable/bg_round_corner_6_7_222222"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:hint="@string/screen_can_coupon_input_hint"
|
android:hint="@string/screen_can_coupon_input_hint"
|
||||||
android:importantForAutofill="no"
|
android:importantForAutofill="no"
|
||||||
android:inputType="textCapCharacters"
|
android:inputType="textCapCharacters"
|
||||||
@@ -54,7 +54,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="21.3dp"
|
android:layout_marginTop="21.3dp"
|
||||||
android:background="@drawable/bg_round_corner_10_3bb9f1"
|
android:background="@drawable/bg_round_corner_10_3bb9f1"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:paddingVertical="16dp"
|
android:paddingVertical="16dp"
|
||||||
android:text="@string/screen_can_coupon_submit"
|
android:text="@string/screen_can_coupon_submit"
|
||||||
@@ -73,7 +73,7 @@
|
|||||||
<TextView
|
<TextView
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_can_coupon_guide_title"
|
android:text="@string/screen_can_coupon_guide_title"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="13.3sp" />
|
android:textSize="13.3sp" />
|
||||||
@@ -82,7 +82,7 @@
|
|||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="8dp"
|
android:layout_marginTop="8dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:lineSpacingExtra="5sp"
|
android:lineSpacingExtra="5sp"
|
||||||
android:paddingHorizontal="10dp"
|
android:paddingHorizontal="10dp"
|
||||||
android:text="@string/screen_can_coupon_guide_description"
|
android:text="@string/screen_can_coupon_guide_description"
|
||||||
@@ -98,7 +98,7 @@
|
|||||||
<TextView
|
<TextView
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_can_coupon_notice_title"
|
android:text="@string/screen_can_coupon_notice_title"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="13.3sp" />
|
android:textSize="13.3sp" />
|
||||||
@@ -107,7 +107,7 @@
|
|||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="8dp"
|
android:layout_marginTop="8dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:lineSpacingExtra="5sp"
|
android:lineSpacingExtra="5sp"
|
||||||
android:paddingHorizontal="10dp"
|
android:paddingHorizontal="10dp"
|
||||||
android:text="@string/screen_can_coupon_notice_description"
|
android:text="@string/screen_can_coupon_notice_description"
|
||||||
@@ -118,7 +118,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="13.3dp"
|
android:layout_marginTop="13.3dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_can_coupon_notice_support"
|
android:text="@string/screen_can_coupon_notice_support"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="13.3sp" />
|
android:textSize="13.3sp" />
|
||||||
|
|||||||
@@ -53,7 +53,7 @@
|
|||||||
android:id="@+id/tv_charge_can_title"
|
android:id="@+id/tv_charge_can_title"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="15.3sp"
|
android:textSize="15.3sp"
|
||||||
@@ -64,7 +64,7 @@
|
|||||||
android:id="@+id/tv_price"
|
android:id="@+id/tv_price"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="15.3sp"
|
android:textSize="15.3sp"
|
||||||
app:layout_constraintBottom_toBottomOf="parent"
|
app:layout_constraintBottom_toBottomOf="parent"
|
||||||
@@ -78,7 +78,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginHorizontal="13.3dp"
|
android:layout_marginHorizontal="13.3dp"
|
||||||
android:layout_marginTop="26.7dp"
|
android:layout_marginTop="26.7dp"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_can_payment_select_method"
|
android:text="@string/screen_can_payment_select_method"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="16.7sp" />
|
android:textSize="16.7sp" />
|
||||||
@@ -96,7 +96,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_weight="1"
|
android:layout_weight="1"
|
||||||
android:background="@drawable/bg_round_corner_10_232323_777777"
|
android:background="@drawable/bg_round_corner_10_232323_777777"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:paddingVertical="16.7dp"
|
android:paddingVertical="16.7dp"
|
||||||
android:text="@string/screen_can_payment_method_unified"
|
android:text="@string/screen_can_payment_method_unified"
|
||||||
@@ -126,7 +126,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_weight="1"
|
android:layout_weight="1"
|
||||||
android:background="@drawable/bg_round_corner_10_232323_777777"
|
android:background="@drawable/bg_round_corner_10_232323_777777"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:paddingVertical="16.7dp"
|
android:paddingVertical="16.7dp"
|
||||||
android:text="@string/screen_can_payment_method_phone"
|
android:text="@string/screen_can_payment_method_phone"
|
||||||
@@ -142,7 +142,7 @@
|
|||||||
android:layout_marginTop="16.7dp"
|
android:layout_marginTop="16.7dp"
|
||||||
android:button="@null"
|
android:button="@null"
|
||||||
android:drawablePadding="6.7dp"
|
android:drawablePadding="6.7dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:text="@string/screen_can_payment_agree"
|
android:text="@string/screen_can_payment_agree"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
@@ -155,7 +155,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginHorizontal="13.3dp"
|
android:layout_marginHorizontal="13.3dp"
|
||||||
android:layout_marginTop="13.3dp"
|
android:layout_marginTop="13.3dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_can_payment_notice"
|
android:text="@string/screen_can_payment_notice"
|
||||||
android:textColor="@color/color_777777"
|
android:textColor="@color/color_777777"
|
||||||
android:textSize="12sp" />
|
android:textSize="12sp" />
|
||||||
@@ -194,7 +194,7 @@
|
|||||||
<TextView
|
<TextView
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_can_payment_amount_label"
|
android:text="@string/screen_can_payment_amount_label"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="13.3sp" />
|
android:textSize="13.3sp" />
|
||||||
@@ -204,7 +204,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="5dp"
|
android:layout_marginTop="5dp"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="23.3sp"
|
android:textSize="23.3sp"
|
||||||
tools:text="3,300원" />
|
tools:text="3,300원" />
|
||||||
@@ -217,7 +217,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginStart="31dp"
|
android:layout_marginStart="31dp"
|
||||||
android:background="@drawable/bg_round_corner_10_80d8ff"
|
android:background="@drawable/bg_round_corner_10_80d8ff"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:paddingVertical="16dp"
|
android:paddingVertical="16dp"
|
||||||
android:text="@string/screen_can_payment_pay"
|
android:text="@string/screen_can_payment_pay"
|
||||||
|
|||||||
@@ -36,7 +36,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:drawablePadding="6.7dp"
|
android:drawablePadding="6.7dp"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="18.3sp"
|
android:textSize="18.3sp"
|
||||||
@@ -59,7 +59,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_centerHorizontal="true"
|
android:layout_centerHorizontal="true"
|
||||||
android:fontFamily="@font/pretendard_light"
|
android:fontFamily="@font/light"
|
||||||
android:text="@string/screen_can_status_label_paid"
|
android:text="@string/screen_can_status_label_paid"
|
||||||
android:textColor="@color/color_777777"
|
android:textColor="@color/color_777777"
|
||||||
android:textSize="12sp" />
|
android:textSize="12sp" />
|
||||||
@@ -76,7 +76,7 @@
|
|||||||
android:id="@+id/tv_paid_can"
|
android:id="@+id/tv_paid_can"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="16.7sp"
|
android:textSize="16.7sp"
|
||||||
tools:text="20,000" />
|
tools:text="20,000" />
|
||||||
@@ -85,7 +85,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginStart="6.7dp"
|
android:layout_marginStart="6.7dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_can_status_unit"
|
android:text="@string/screen_can_status_unit"
|
||||||
android:textColor="@color/color_bbbbbb"
|
android:textColor="@color/color_bbbbbb"
|
||||||
android:textSize="10.7sp"
|
android:textSize="10.7sp"
|
||||||
@@ -109,7 +109,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_centerHorizontal="true"
|
android:layout_centerHorizontal="true"
|
||||||
android:fontFamily="@font/pretendard_light"
|
android:fontFamily="@font/light"
|
||||||
android:text="@string/screen_can_status_label_reward"
|
android:text="@string/screen_can_status_label_reward"
|
||||||
android:textColor="@color/color_777777"
|
android:textColor="@color/color_777777"
|
||||||
android:textSize="12sp" />
|
android:textSize="12sp" />
|
||||||
@@ -126,7 +126,7 @@
|
|||||||
android:id="@+id/tv_reward_can"
|
android:id="@+id/tv_reward_can"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="16.7sp"
|
android:textSize="16.7sp"
|
||||||
tools:text="20,000" />
|
tools:text="20,000" />
|
||||||
@@ -135,7 +135,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginStart="6.7dp"
|
android:layout_marginStart="6.7dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_can_status_unit"
|
android:text="@string/screen_can_status_unit"
|
||||||
android:textColor="@color/color_bbbbbb"
|
android:textColor="@color/color_bbbbbb"
|
||||||
android:textSize="10.7sp"
|
android:textSize="10.7sp"
|
||||||
@@ -187,7 +187,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_gravity="center"
|
android:layout_gravity="center"
|
||||||
android:drawablePadding="6.7dp"
|
android:drawablePadding="6.7dp"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:text="@string/screen_can_status_charge_action"
|
android:text="@string/screen_can_status_charge_action"
|
||||||
android:textColor="@color/color_1313bc"
|
android:textColor="@color/color_1313bc"
|
||||||
|
|||||||
@@ -79,7 +79,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:ellipsize="end"
|
android:ellipsize="end"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:maxLines="1"
|
android:maxLines="1"
|
||||||
android:textColor="#FFFFFFFF"
|
android:textColor="#FFFFFFFF"
|
||||||
android:textSize="12sp"
|
android:textSize="12sp"
|
||||||
@@ -93,7 +93,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="4dp"
|
android:layout_marginTop="4dp"
|
||||||
android:background="@drawable/bg_character_status_clone"
|
android:background="@drawable/bg_character_status_clone"
|
||||||
android:fontFamily="@font/pretendard_regular"
|
android:fontFamily="@font/regular"
|
||||||
android:paddingHorizontal="4dp"
|
android:paddingHorizontal="4dp"
|
||||||
android:paddingVertical="2dp"
|
android:paddingVertical="2dp"
|
||||||
android:textColor="#FFFFFFFF"
|
android:textColor="#FFFFFFFF"
|
||||||
@@ -129,7 +129,7 @@
|
|||||||
android:id="@+id/tv_can_badge"
|
android:id="@+id/tv_can_badge"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_regular"
|
android:fontFamily="@font/regular"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:textColor="#FFFFFFFF"
|
android:textColor="#FFFFFFFF"
|
||||||
android:textSize="16sp"
|
android:textSize="16sp"
|
||||||
@@ -188,7 +188,7 @@
|
|||||||
app:layout_constraintEnd_toStartOf="@id/iv_collapse"
|
app:layout_constraintEnd_toStartOf="@id/iv_collapse"
|
||||||
app:layout_constraintStart_toEndOf="@id/iv_notice_icon"
|
app:layout_constraintStart_toEndOf="@id/iv_notice_icon"
|
||||||
app:layout_constraintTop_toTopOf="parent"
|
app:layout_constraintTop_toTopOf="parent"
|
||||||
android:fontFamily="@font/pretendard_medium" />
|
android:fontFamily="@font/medium" />
|
||||||
|
|
||||||
<ImageView
|
<ImageView
|
||||||
android:id="@+id/iv_collapse"
|
android:id="@+id/iv_collapse"
|
||||||
@@ -231,7 +231,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginEnd="8dp"
|
android:layout_marginEnd="8dp"
|
||||||
android:background="@drawable/bg_chat_input"
|
android:background="@drawable/bg_chat_input"
|
||||||
android:fontFamily="@font/pretendard_regular"
|
android:fontFamily="@font/regular"
|
||||||
android:hint="@string/chat_input_placeholder"
|
android:hint="@string/chat_input_placeholder"
|
||||||
android:imeOptions="actionSend|flagNoEnterAction"
|
android:imeOptions="actionSend|flagNoEnterAction"
|
||||||
android:importantForAutofill="no"
|
android:importantForAutofill="no"
|
||||||
|
|||||||
@@ -31,7 +31,7 @@
|
|||||||
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:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_content_settings_adult_toggle"
|
android:text="@string/screen_content_settings_adult_toggle"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="14.7sp" />
|
android:textSize="14.7sp" />
|
||||||
@@ -72,7 +72,7 @@
|
|||||||
android:layout_weight="1"
|
android:layout_weight="1"
|
||||||
android:button="@null"
|
android:button="@null"
|
||||||
android:drawablePadding="13.3dp"
|
android:drawablePadding="13.3dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center_vertical"
|
android:gravity="center_vertical"
|
||||||
android:text="@string/screen_content_settings_all"
|
android:text="@string/screen_content_settings_all"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
@@ -87,7 +87,7 @@
|
|||||||
android:layout_weight="1"
|
android:layout_weight="1"
|
||||||
android:button="@null"
|
android:button="@null"
|
||||||
android:drawablePadding="13.3dp"
|
android:drawablePadding="13.3dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center_vertical"
|
android:gravity="center_vertical"
|
||||||
android:text="@string/screen_content_settings_male"
|
android:text="@string/screen_content_settings_male"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
@@ -101,7 +101,7 @@
|
|||||||
android:layout_weight="1"
|
android:layout_weight="1"
|
||||||
android:button="@null"
|
android:button="@null"
|
||||||
android:drawablePadding="13.3dp"
|
android:drawablePadding="13.3dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center_vertical"
|
android:gravity="center_vertical"
|
||||||
android:text="@string/screen_content_settings_female"
|
android:text="@string/screen_content_settings_female"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
|
|||||||
@@ -36,7 +36,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginHorizontal="13.3dp"
|
android:layout_marginHorizontal="13.3dp"
|
||||||
android:layout_marginTop="13.3dp"
|
android:layout_marginTop="13.3dp"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_creator_community_write_image_label"
|
android:text="@string/screen_creator_community_write_image_label"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="16.7sp" />
|
android:textSize="16.7sp" />
|
||||||
@@ -91,7 +91,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="24dp"
|
android:layout_marginTop="24dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_creator_community_write_notice_mark"
|
android:text="@string/screen_creator_community_write_notice_mark"
|
||||||
android:textColor="@color/color_777777"
|
android:textColor="@color/color_777777"
|
||||||
android:textSize="13.3sp" />
|
android:textSize="13.3sp" />
|
||||||
@@ -100,7 +100,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="24dp"
|
android:layout_marginTop="24dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_creator_community_write_image_optional_desc"
|
android:text="@string/screen_creator_community_write_image_optional_desc"
|
||||||
android:textColor="@color/color_777777"
|
android:textColor="@color/color_777777"
|
||||||
android:textSize="13.3sp" />
|
android:textSize="13.3sp" />
|
||||||
@@ -121,7 +121,7 @@
|
|||||||
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:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:lineSpacingExtra="5sp"
|
android:lineSpacingExtra="5sp"
|
||||||
android:text="@string/screen_creator_community_write_content_label"
|
android:text="@string/screen_creator_community_write_content_label"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
@@ -136,7 +136,7 @@
|
|||||||
android:id="@+id/tv_number_of_characters"
|
android:id="@+id/tv_number_of_characters"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_creator_community_write_character_count_format"
|
android:text="@string/screen_creator_community_write_character_count_format"
|
||||||
android:textColor="@color/color_ff5c49"
|
android:textColor="@color/color_ff5c49"
|
||||||
android:textSize="13.3sp" />
|
android:textSize="13.3sp" />
|
||||||
@@ -144,7 +144,7 @@
|
|||||||
<TextView
|
<TextView
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_creator_community_write_character_limit"
|
android:text="@string/screen_creator_community_write_character_limit"
|
||||||
android:textColor="@color/color_777777"
|
android:textColor="@color/color_777777"
|
||||||
android:textSize="13.3sp" />
|
android:textSize="13.3sp" />
|
||||||
@@ -158,7 +158,7 @@
|
|||||||
android:layout_height="200dp"
|
android:layout_height="200dp"
|
||||||
android:layout_marginTop="6.7dp"
|
android:layout_marginTop="6.7dp"
|
||||||
android:background="@drawable/bg_round_corner_6_7_222222"
|
android:background="@drawable/bg_round_corner_6_7_222222"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="top"
|
android:gravity="top"
|
||||||
android:hint="@string/screen_creator_community_write_content_hint"
|
android:hint="@string/screen_creator_community_write_content_hint"
|
||||||
android:importantForAutofill="no"
|
android:importantForAutofill="no"
|
||||||
@@ -182,7 +182,7 @@
|
|||||||
<TextView
|
<TextView
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:lineSpacingExtra="5sp"
|
android:lineSpacingExtra="5sp"
|
||||||
android:text="@string/screen_creator_community_write_comment_title"
|
android:text="@string/screen_creator_community_write_comment_title"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
@@ -216,7 +216,7 @@
|
|||||||
android:id="@+id/tv_comment_yes"
|
android:id="@+id/tv_comment_yes"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_creator_community_write_comment_enabled"
|
android:text="@string/screen_creator_community_write_comment_enabled"
|
||||||
android:textColor="@color/color_80d8ff"
|
android:textColor="@color/color_80d8ff"
|
||||||
android:textSize="14.7sp" />
|
android:textSize="14.7sp" />
|
||||||
@@ -245,7 +245,7 @@
|
|||||||
android:id="@+id/tv_comment_no"
|
android:id="@+id/tv_comment_no"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_creator_community_write_comment_disabled"
|
android:text="@string/screen_creator_community_write_comment_disabled"
|
||||||
android:textColor="@color/color_80d8ff"
|
android:textColor="@color/color_80d8ff"
|
||||||
android:textSize="14.7sp" />
|
android:textSize="14.7sp" />
|
||||||
@@ -264,7 +264,7 @@
|
|||||||
<TextView
|
<TextView
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:lineSpacingExtra="5sp"
|
android:lineSpacingExtra="5sp"
|
||||||
android:text="@string/screen_creator_community_write_age_title"
|
android:text="@string/screen_creator_community_write_age_title"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
@@ -298,7 +298,7 @@
|
|||||||
android:id="@+id/tv_age_all"
|
android:id="@+id/tv_age_all"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_creator_community_write_age_all"
|
android:text="@string/screen_creator_community_write_age_all"
|
||||||
android:textColor="@color/color_80d8ff"
|
android:textColor="@color/color_80d8ff"
|
||||||
android:textSize="14.7sp" />
|
android:textSize="14.7sp" />
|
||||||
@@ -327,7 +327,7 @@
|
|||||||
android:id="@+id/tv_age_19"
|
android:id="@+id/tv_age_19"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_creator_community_write_age_19_plus"
|
android:text="@string/screen_creator_community_write_age_19_plus"
|
||||||
android:textColor="@color/color_80d8ff"
|
android:textColor="@color/color_80d8ff"
|
||||||
android:textSize="14.7sp" />
|
android:textSize="14.7sp" />
|
||||||
@@ -350,7 +350,7 @@
|
|||||||
android:layout_marginEnd="6.7dp"
|
android:layout_marginEnd="6.7dp"
|
||||||
android:layout_weight="1"
|
android:layout_weight="1"
|
||||||
android:background="@drawable/bg_round_corner_6_7_13181b_3bb9f1"
|
android:background="@drawable/bg_round_corner_6_7_13181b_3bb9f1"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:text="@string/screen_creator_community_write_close"
|
android:text="@string/screen_creator_community_write_close"
|
||||||
android:textColor="@color/color_3bb9f1"
|
android:textColor="@color/color_3bb9f1"
|
||||||
@@ -363,7 +363,7 @@
|
|||||||
android:layout_marginStart="6.7dp"
|
android:layout_marginStart="6.7dp"
|
||||||
android:layout_weight="1"
|
android:layout_weight="1"
|
||||||
android:background="@drawable/bg_round_corner_6_7_3bb9f1"
|
android:background="@drawable/bg_round_corner_6_7_3bb9f1"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:text="@string/screen_creator_community_modify_submit"
|
android:text="@string/screen_creator_community_modify_submit"
|
||||||
android:textColor="@color/white"
|
android:textColor="@color/white"
|
||||||
|
|||||||
@@ -36,7 +36,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginHorizontal="13.3dp"
|
android:layout_marginHorizontal="13.3dp"
|
||||||
android:layout_marginTop="13.3dp"
|
android:layout_marginTop="13.3dp"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_creator_community_write_image_label"
|
android:text="@string/screen_creator_community_write_image_label"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="16.7sp" />
|
android:textSize="16.7sp" />
|
||||||
@@ -91,7 +91,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="24dp"
|
android:layout_marginTop="24dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_creator_community_write_notice_mark"
|
android:text="@string/screen_creator_community_write_notice_mark"
|
||||||
android:textColor="@color/color_777777"
|
android:textColor="@color/color_777777"
|
||||||
android:textSize="13.3sp" />
|
android:textSize="13.3sp" />
|
||||||
@@ -100,7 +100,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="24dp"
|
android:layout_marginTop="24dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_creator_community_write_image_optional_desc"
|
android:text="@string/screen_creator_community_write_image_optional_desc"
|
||||||
android:textColor="@color/color_777777"
|
android:textColor="@color/color_777777"
|
||||||
android:textSize="13.3sp" />
|
android:textSize="13.3sp" />
|
||||||
@@ -119,7 +119,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:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_creator_community_write_record_label"
|
android:text="@string/screen_creator_community_write_record_label"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="16.7sp" />
|
android:textSize="16.7sp" />
|
||||||
@@ -131,7 +131,7 @@
|
|||||||
android:layout_marginHorizontal="13.3dp"
|
android:layout_marginHorizontal="13.3dp"
|
||||||
android:layout_marginTop="13.3dp"
|
android:layout_marginTop="13.3dp"
|
||||||
android:background="@drawable/bg_round_corner_5_3_13181b_3bb9f1"
|
android:background="@drawable/bg_round_corner_5_3_13181b_3bb9f1"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:paddingVertical="8dp"
|
android:paddingVertical="8dp"
|
||||||
android:text="@string/screen_creator_community_write_record_action"
|
android:text="@string/screen_creator_community_write_record_action"
|
||||||
@@ -148,7 +148,7 @@
|
|||||||
<TextView
|
<TextView
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_creator_community_write_notice_mark"
|
android:text="@string/screen_creator_community_write_notice_mark"
|
||||||
android:textColor="@color/color_777777"
|
android:textColor="@color/color_777777"
|
||||||
android:textSize="13.3sp" />
|
android:textSize="13.3sp" />
|
||||||
@@ -156,7 +156,7 @@
|
|||||||
<TextView
|
<TextView
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_creator_community_write_record_desc"
|
android:text="@string/screen_creator_community_write_record_desc"
|
||||||
android:textColor="@color/color_777777"
|
android:textColor="@color/color_777777"
|
||||||
android:textSize="13.3sp" />
|
android:textSize="13.3sp" />
|
||||||
@@ -178,7 +178,7 @@
|
|||||||
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:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:lineSpacingExtra="5sp"
|
android:lineSpacingExtra="5sp"
|
||||||
android:text="@string/screen_creator_community_write_content_label"
|
android:text="@string/screen_creator_community_write_content_label"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
@@ -193,7 +193,7 @@
|
|||||||
android:id="@+id/tv_number_of_characters"
|
android:id="@+id/tv_number_of_characters"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_creator_community_write_character_count_format"
|
android:text="@string/screen_creator_community_write_character_count_format"
|
||||||
android:textColor="@color/color_ff5c49"
|
android:textColor="@color/color_ff5c49"
|
||||||
android:textSize="13.3sp" />
|
android:textSize="13.3sp" />
|
||||||
@@ -201,7 +201,7 @@
|
|||||||
<TextView
|
<TextView
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_creator_community_write_character_limit"
|
android:text="@string/screen_creator_community_write_character_limit"
|
||||||
android:textColor="@color/color_777777"
|
android:textColor="@color/color_777777"
|
||||||
android:textSize="13.3sp" />
|
android:textSize="13.3sp" />
|
||||||
@@ -215,7 +215,7 @@
|
|||||||
android:layout_height="200dp"
|
android:layout_height="200dp"
|
||||||
android:layout_marginTop="6.7dp"
|
android:layout_marginTop="6.7dp"
|
||||||
android:background="@drawable/bg_round_corner_6_7_222222"
|
android:background="@drawable/bg_round_corner_6_7_222222"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="top"
|
android:gravity="top"
|
||||||
android:hint="@string/screen_creator_community_write_content_hint"
|
android:hint="@string/screen_creator_community_write_content_hint"
|
||||||
android:importantForAutofill="no"
|
android:importantForAutofill="no"
|
||||||
@@ -239,7 +239,7 @@
|
|||||||
<TextView
|
<TextView
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:lineSpacingExtra="5sp"
|
android:lineSpacingExtra="5sp"
|
||||||
android:text="@string/screen_creator_community_write_comment_section_title"
|
android:text="@string/screen_creator_community_write_comment_section_title"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
@@ -273,7 +273,7 @@
|
|||||||
android:id="@+id/tv_comment_yes"
|
android:id="@+id/tv_comment_yes"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_creator_community_write_comment_enabled"
|
android:text="@string/screen_creator_community_write_comment_enabled"
|
||||||
android:textColor="@color/color_80d8ff"
|
android:textColor="@color/color_80d8ff"
|
||||||
android:textSize="14.7sp" />
|
android:textSize="14.7sp" />
|
||||||
@@ -302,7 +302,7 @@
|
|||||||
android:id="@+id/tv_comment_no"
|
android:id="@+id/tv_comment_no"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_creator_community_write_comment_disabled"
|
android:text="@string/screen_creator_community_write_comment_disabled"
|
||||||
android:textColor="@color/color_80d8ff"
|
android:textColor="@color/color_80d8ff"
|
||||||
android:textSize="14.7sp" />
|
android:textSize="14.7sp" />
|
||||||
@@ -321,7 +321,7 @@
|
|||||||
<TextView
|
<TextView
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:lineSpacingExtra="5sp"
|
android:lineSpacingExtra="5sp"
|
||||||
android:text="@string/screen_creator_community_write_age_title"
|
android:text="@string/screen_creator_community_write_age_title"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
@@ -355,7 +355,7 @@
|
|||||||
android:id="@+id/tv_age_all"
|
android:id="@+id/tv_age_all"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_creator_community_write_age_all"
|
android:text="@string/screen_creator_community_write_age_all"
|
||||||
android:textColor="@color/color_80d8ff"
|
android:textColor="@color/color_80d8ff"
|
||||||
android:textSize="14.7sp" />
|
android:textSize="14.7sp" />
|
||||||
@@ -384,7 +384,7 @@
|
|||||||
android:id="@+id/tv_age_19"
|
android:id="@+id/tv_age_19"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_creator_community_write_age_19_plus"
|
android:text="@string/screen_creator_community_write_age_19_plus"
|
||||||
android:textColor="@color/color_80d8ff"
|
android:textColor="@color/color_80d8ff"
|
||||||
android:textSize="14.7sp" />
|
android:textSize="14.7sp" />
|
||||||
@@ -403,7 +403,7 @@
|
|||||||
<TextView
|
<TextView
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:lineSpacingExtra="5sp"
|
android:lineSpacingExtra="5sp"
|
||||||
android:text="@string/screen_creator_community_write_price_title"
|
android:text="@string/screen_creator_community_write_price_title"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
@@ -438,7 +438,7 @@
|
|||||||
android:id="@+id/tv_price_free"
|
android:id="@+id/tv_price_free"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_creator_community_write_price_free"
|
android:text="@string/screen_creator_community_write_price_free"
|
||||||
android:textColor="@color/color_3bb9f1"
|
android:textColor="@color/color_3bb9f1"
|
||||||
android:textSize="14.7sp" />
|
android:textSize="14.7sp" />
|
||||||
@@ -467,7 +467,7 @@
|
|||||||
android:id="@+id/tv_price_paid"
|
android:id="@+id/tv_price_paid"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_creator_community_write_price_paid"
|
android:text="@string/screen_creator_community_write_price_paid"
|
||||||
android:textColor="@color/color_3bb9f1"
|
android:textColor="@color/color_3bb9f1"
|
||||||
android:textSize="14.7sp" />
|
android:textSize="14.7sp" />
|
||||||
@@ -490,7 +490,7 @@
|
|||||||
android:layout_marginHorizontal="13.3dp"
|
android:layout_marginHorizontal="13.3dp"
|
||||||
android:layout_toStartOf="@+id/tv_can"
|
android:layout_toStartOf="@+id/tv_can"
|
||||||
android:background="@null"
|
android:background="@null"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:importantForAutofill="no"
|
android:importantForAutofill="no"
|
||||||
android:inputType="numberDecimal"
|
android:inputType="numberDecimal"
|
||||||
@@ -508,7 +508,7 @@
|
|||||||
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/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_creator_community_write_can_unit"
|
android:text="@string/screen_creator_community_write_can_unit"
|
||||||
android:textColor="@color/color_3bb9f1"
|
android:textColor="@color/color_3bb9f1"
|
||||||
android:textSize="13.3sp" />
|
android:textSize="13.3sp" />
|
||||||
@@ -530,7 +530,7 @@
|
|||||||
android:layout_marginEnd="6.7dp"
|
android:layout_marginEnd="6.7dp"
|
||||||
android:layout_weight="1"
|
android:layout_weight="1"
|
||||||
android:background="@drawable/bg_round_corner_6_7_13181b_3bb9f1"
|
android:background="@drawable/bg_round_corner_6_7_13181b_3bb9f1"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:text="@string/screen_creator_community_write_close"
|
android:text="@string/screen_creator_community_write_close"
|
||||||
android:textColor="@color/color_3bb9f1"
|
android:textColor="@color/color_3bb9f1"
|
||||||
@@ -543,7 +543,7 @@
|
|||||||
android:layout_marginStart="6.7dp"
|
android:layout_marginStart="6.7dp"
|
||||||
android:layout_weight="1"
|
android:layout_weight="1"
|
||||||
android:background="@drawable/bg_round_corner_6_7_3bb9f1"
|
android:background="@drawable/bg_round_corner_6_7_3bb9f1"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:text="@string/screen_creator_community_write_submit"
|
android:text="@string/screen_creator_community_write_submit"
|
||||||
android:textColor="@color/white"
|
android:textColor="@color/white"
|
||||||
|
|||||||
@@ -34,7 +34,7 @@
|
|||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:background="@drawable/bg_round_corner_10_3e737c"
|
android:background="@drawable/bg_round_corner_10_3e737c"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:paddingVertical="16dp"
|
android:paddingVertical="16dp"
|
||||||
android:text="@string/screen_event_participate"
|
android:text="@string/screen_event_participate"
|
||||||
|
|||||||
@@ -26,7 +26,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginHorizontal="26.7dp"
|
android:layout_marginHorizontal="26.7dp"
|
||||||
android:layout_marginTop="40dp"
|
android:layout_marginTop="40dp"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:lineSpacingExtra="6dp"
|
android:lineSpacingExtra="6dp"
|
||||||
android:text="@string/find_password_description_primary"
|
android:text="@string/find_password_description_primary"
|
||||||
@@ -38,7 +38,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginHorizontal="26.7dp"
|
android:layout_marginHorizontal="26.7dp"
|
||||||
android:layout_marginTop="40dp"
|
android:layout_marginTop="40dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:lineSpacingExtra="6dp"
|
android:lineSpacingExtra="6dp"
|
||||||
android:text="@string/find_password_description_secondary"
|
android:text="@string/find_password_description_secondary"
|
||||||
@@ -64,7 +64,7 @@
|
|||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:background="@android:color/transparent"
|
android:background="@android:color/transparent"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:hint="@string/find_password_email_hint"
|
android:hint="@string/find_password_email_hint"
|
||||||
android:importantForAutofill="no"
|
android:importantForAutofill="no"
|
||||||
android:inputType="textEmailAddress"
|
android:inputType="textEmailAddress"
|
||||||
@@ -81,7 +81,7 @@
|
|||||||
android:layout_marginHorizontal="13.3dp"
|
android:layout_marginHorizontal="13.3dp"
|
||||||
android:layout_marginTop="60dp"
|
android:layout_marginTop="60dp"
|
||||||
android:background="@drawable/bg_round_corner_6_7_3bb9f1"
|
android:background="@drawable/bg_round_corner_6_7_3bb9f1"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:paddingVertical="16dp"
|
android:paddingVertical="16dp"
|
||||||
android:text="@string/find_password_submit"
|
android:text="@string/find_password_submit"
|
||||||
@@ -101,7 +101,7 @@
|
|||||||
android:text="@string/find_password_contact_support"
|
android:text="@string/find_password_contact_support"
|
||||||
android:textColor="@color/color_3bb9f1"
|
android:textColor="@color/color_3bb9f1"
|
||||||
app:drawableStartCompat="@drawable/ic_headphones_blue"
|
app:drawableStartCompat="@drawable/ic_headphones_blue"
|
||||||
android:fontFamily="@font/pretendard_medium" />
|
android:fontFamily="@font/medium" />
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
</ScrollView>
|
</ScrollView>
|
||||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||||
|
|||||||
@@ -23,7 +23,7 @@
|
|||||||
<TextView
|
<TextView
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/following_creator_total_prefix"
|
android:text="@string/following_creator_total_prefix"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="12sp" />
|
android:textSize="12sp" />
|
||||||
@@ -32,7 +32,7 @@
|
|||||||
android:id="@+id/tv_total_count"
|
android:id="@+id/tv_total_count"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:textColor="@color/color_dd4500"
|
android:textColor="@color/color_dd4500"
|
||||||
android:textSize="12sp"
|
android:textSize="12sp"
|
||||||
tools:text=" 10" />
|
tools:text=" 10" />
|
||||||
@@ -40,7 +40,7 @@
|
|||||||
<TextView
|
<TextView
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/following_creator_total_suffix"
|
android:text="@string/following_creator_total_suffix"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="12sp" />
|
android:textSize="12sp" />
|
||||||
@@ -64,7 +64,7 @@
|
|||||||
android:layout_width="0dp"
|
android:layout_width="0dp"
|
||||||
android:layout_height="0dp"
|
android:layout_height="0dp"
|
||||||
android:layout_marginTop="13.3dp"
|
android:layout_marginTop="13.3dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:text="@string/following_creator_empty"
|
android:text="@string/following_creator_empty"
|
||||||
app:layout_constraintBottom_toBottomOf="parent"
|
app:layout_constraintBottom_toBottomOf="parent"
|
||||||
|
|||||||
@@ -38,7 +38,7 @@
|
|||||||
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:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/settings_language_korean"
|
android:text="@string/settings_language_korean"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="15sp" />
|
android:textSize="15sp" />
|
||||||
@@ -70,7 +70,7 @@
|
|||||||
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:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/settings_language_english"
|
android:text="@string/settings_language_english"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="15sp" />
|
android:textSize="15sp" />
|
||||||
@@ -102,7 +102,7 @@
|
|||||||
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:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/settings_language_japanese"
|
android:text="@string/settings_language_japanese"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="15sp" />
|
android:textSize="15sp" />
|
||||||
@@ -125,7 +125,7 @@
|
|||||||
android:layout_marginHorizontal="13.3dp"
|
android:layout_marginHorizontal="13.3dp"
|
||||||
android:layout_marginTop="20dp"
|
android:layout_marginTop="20dp"
|
||||||
android:background="@drawable/bg_round_corner_6_7_3bb9f1"
|
android:background="@drawable/bg_round_corner_6_7_3bb9f1"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:text="@string/settings_language_apply"
|
android:text="@string/settings_language_apply"
|
||||||
android:textAllCaps="false"
|
android:textAllCaps="false"
|
||||||
|
|||||||
@@ -28,7 +28,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_gravity="center"
|
android:layout_gravity="center"
|
||||||
android:layout_marginTop="28.3dp"
|
android:layout_marginTop="28.3dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_live_now_all_empty_message"
|
android:text="@string/screen_live_now_all_empty_message"
|
||||||
android:textColor="@color/color_bbbbbb"
|
android:textColor="@color/color_bbbbbb"
|
||||||
android:textSize="13sp"
|
android:textSize="13sp"
|
||||||
|
|||||||
@@ -57,7 +57,7 @@
|
|||||||
<TextView
|
<TextView
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:lineSpacingExtra="8dp"
|
android:lineSpacingExtra="8dp"
|
||||||
android:text="@string/screen_live_reservation_all_empty_message"
|
android:text="@string/screen_live_reservation_all_empty_message"
|
||||||
|
|||||||
@@ -49,7 +49,7 @@
|
|||||||
android:id="@+id/tv_date"
|
android:id="@+id/tv_date"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:textColor="@color/color_ffd300"
|
android:textColor="@color/color_ffd300"
|
||||||
android:textSize="9.3sp"
|
android:textSize="9.3sp"
|
||||||
tools:ignore="SmallSp"
|
tools:ignore="SmallSp"
|
||||||
@@ -60,7 +60,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="10dp"
|
android:layout_marginTop="10dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:textColor="@color/color_bbbbbb"
|
android:textColor="@color/color_bbbbbb"
|
||||||
android:textSize="11.3sp"
|
android:textSize="11.3sp"
|
||||||
tools:text="사냥꾼1004" />
|
tools:text="사냥꾼1004" />
|
||||||
@@ -71,7 +71,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="4.3dp"
|
android:layout_marginTop="4.3dp"
|
||||||
android:ellipsize="end"
|
android:ellipsize="end"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:lineSpacingExtra="4.7sp"
|
android:lineSpacingExtra="4.7sp"
|
||||||
android:maxLines="2"
|
android:maxLines="2"
|
||||||
android:textColor="@color/color_e2e2e2"
|
android:textColor="@color/color_e2e2e2"
|
||||||
@@ -87,7 +87,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="15.3dp"
|
android:layout_marginTop="15.3dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:textColor="@color/color_7fe2e2e2"
|
android:textColor="@color/color_7fe2e2e2"
|
||||||
android:textSize="12sp"
|
android:textSize="12sp"
|
||||||
tools:text="300캔" />
|
tools:text="300캔" />
|
||||||
@@ -128,7 +128,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginHorizontal="13.3dp"
|
android:layout_marginHorizontal="13.3dp"
|
||||||
android:layout_marginTop="33.3dp"
|
android:layout_marginTop="33.3dp"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/live_reservation_cancel_question"
|
android:text="@string/live_reservation_cancel_question"
|
||||||
android:textColor="@color/color_a285eb"
|
android:textColor="@color/color_a285eb"
|
||||||
android:textSize="20sp" />
|
android:textSize="20sp" />
|
||||||
@@ -137,7 +137,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:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:letterSpacing="0"
|
android:letterSpacing="0"
|
||||||
android:text="@string/live_reservation_cancel_reason_title"
|
android:text="@string/live_reservation_cancel_reason_title"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
@@ -151,7 +151,7 @@
|
|||||||
android:layout_marginTop="13.3dp"
|
android:layout_marginTop="13.3dp"
|
||||||
android:button="@null"
|
android:button="@null"
|
||||||
android:drawablePadding="13.3dp"
|
android:drawablePadding="13.3dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/live_reservation_cancel_reason_private_schedule"
|
android:text="@string/live_reservation_cancel_reason_private_schedule"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="13.3sp"
|
android:textSize="13.3sp"
|
||||||
@@ -165,7 +165,7 @@
|
|||||||
android:layout_marginTop="10dp"
|
android:layout_marginTop="10dp"
|
||||||
android:button="@null"
|
android:button="@null"
|
||||||
android:drawablePadding="13.3dp"
|
android:drawablePadding="13.3dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/live_reservation_cancel_reason_other_live"
|
android:text="@string/live_reservation_cancel_reason_other_live"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="13.3sp"
|
android:textSize="13.3sp"
|
||||||
@@ -179,7 +179,7 @@
|
|||||||
android:layout_marginTop="10dp"
|
android:layout_marginTop="10dp"
|
||||||
android:button="@null"
|
android:button="@null"
|
||||||
android:drawablePadding="13.3dp"
|
android:drawablePadding="13.3dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/live_reservation_cancel_reason_uncomfortable"
|
android:text="@string/live_reservation_cancel_reason_uncomfortable"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="13.3sp"
|
android:textSize="13.3sp"
|
||||||
@@ -193,7 +193,7 @@
|
|||||||
android:layout_marginTop="10dp"
|
android:layout_marginTop="10dp"
|
||||||
android:button="@null"
|
android:button="@null"
|
||||||
android:drawablePadding="13.3dp"
|
android:drawablePadding="13.3dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/live_reservation_cancel_reason_cost"
|
android:text="@string/live_reservation_cancel_reason_cost"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="13.3sp"
|
android:textSize="13.3sp"
|
||||||
@@ -212,7 +212,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:button="@null"
|
android:button="@null"
|
||||||
android:drawablePadding="13.3dp"
|
android:drawablePadding="13.3dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/live_reservation_cancel_reason_other"
|
android:text="@string/live_reservation_cancel_reason_other"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="13.3sp"
|
android:textSize="13.3sp"
|
||||||
@@ -230,7 +230,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:background="@null"
|
android:background="@null"
|
||||||
android:button="@null"
|
android:button="@null"
|
||||||
android:fontFamily="@font/pretendard_light"
|
android:fontFamily="@font/light"
|
||||||
android:hint="입력해 주세요"
|
android:hint="입력해 주세요"
|
||||||
android:importantForAutofill="no"
|
android:importantForAutofill="no"
|
||||||
android:inputType="textWebEditText"
|
android:inputType="textWebEditText"
|
||||||
@@ -258,7 +258,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginHorizontal="23.3dp"
|
android:layout_marginHorizontal="23.3dp"
|
||||||
android:layout_marginTop="13.3dp"
|
android:layout_marginTop="13.3dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/live_reservation_cancel_notice"
|
android:text="@string/live_reservation_cancel_notice"
|
||||||
android:textColor="@color/color_ff5c49" />
|
android:textColor="@color/color_ff5c49" />
|
||||||
|
|
||||||
@@ -270,7 +270,7 @@
|
|||||||
android:layout_marginTop="90dp"
|
android:layout_marginTop="90dp"
|
||||||
android:layout_marginBottom="13.3dp"
|
android:layout_marginBottom="13.3dp"
|
||||||
android:background="@drawable/bg_round_corner_6_7_3bb9f1"
|
android:background="@drawable/bg_round_corner_6_7_3bb9f1"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:paddingVertical="16dp"
|
android:paddingVertical="16dp"
|
||||||
android:text="@string/live_reservation_cancel_action"
|
android:text="@string/live_reservation_cancel_action"
|
||||||
@@ -290,7 +290,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginHorizontal="13.3dp"
|
android:layout_marginHorizontal="13.3dp"
|
||||||
android:layout_marginTop="33.3dp"
|
android:layout_marginTop="33.3dp"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/live_reservation_cancel_done"
|
android:text="@string/live_reservation_cancel_done"
|
||||||
android:textColor="@color/color_a285eb"
|
android:textColor="@color/color_a285eb"
|
||||||
android:textSize="20sp" />
|
android:textSize="20sp" />
|
||||||
@@ -301,7 +301,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginHorizontal="13.3dp"
|
android:layout_marginHorizontal="13.3dp"
|
||||||
android:layout_marginTop="20dp"
|
android:layout_marginTop="20dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/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환불처리 되었습니다." />
|
||||||
@@ -320,7 +320,7 @@
|
|||||||
android:layout_marginEnd="13.3dp"
|
android:layout_marginEnd="13.3dp"
|
||||||
android:layout_weight="1"
|
android:layout_weight="1"
|
||||||
android:background="@drawable/bg_round_corner_10_13181b_3bb9f1"
|
android:background="@drawable/bg_round_corner_10_13181b_3bb9f1"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:paddingVertical="16dp"
|
android:paddingVertical="16dp"
|
||||||
android:text="@string/live_reservation_cancel_other_reservation"
|
android:text="@string/live_reservation_cancel_other_reservation"
|
||||||
@@ -333,7 +333,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_weight="1"
|
android:layout_weight="1"
|
||||||
android:background="@drawable/bg_round_corner_10_3bb9f1"
|
android:background="@drawable/bg_round_corner_10_3bb9f1"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:paddingVertical="16dp"
|
android:paddingVertical="16dp"
|
||||||
android:text="@string/live_reservation_cancel_check_history"
|
android:text="@string/live_reservation_cancel_check_history"
|
||||||
|
|||||||
@@ -23,7 +23,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:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_live_reservation_complete_message"
|
android:text="@string/screen_live_reservation_complete_message"
|
||||||
android:textColor="@color/color_3bb9f1"
|
android:textColor="@color/color_3bb9f1"
|
||||||
android:textSize="20sp" />
|
android:textSize="20sp" />
|
||||||
@@ -41,7 +41,7 @@
|
|||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginHorizontal="26.7dp"
|
android:layout_marginHorizontal="26.7dp"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:lineSpacingExtra="5sp"
|
android:lineSpacingExtra="5sp"
|
||||||
android:text="@string/screen_live_reservation_complete_info_title"
|
android:text="@string/screen_live_reservation_complete_info_title"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
@@ -56,7 +56,7 @@
|
|||||||
<TextView
|
<TextView
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:lineSpacingExtra="5.3sp"
|
android:lineSpacingExtra="5.3sp"
|
||||||
android:text="@string/screen_live_reservation_complete_creator_label"
|
android:text="@string/screen_live_reservation_complete_creator_label"
|
||||||
android:textColor="@color/color_777777"
|
android:textColor="@color/color_777777"
|
||||||
@@ -67,7 +67,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginStart="26.7dp"
|
android:layout_marginStart="26.7dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:lineSpacingExtra="5.3sp"
|
android:lineSpacingExtra="5.3sp"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="14.7sp"
|
android:textSize="14.7sp"
|
||||||
@@ -83,7 +83,7 @@
|
|||||||
<TextView
|
<TextView
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:lineSpacingExtra="5.3sp"
|
android:lineSpacingExtra="5.3sp"
|
||||||
android:text="@string/screen_live_reservation_complete_purchase_label"
|
android:text="@string/screen_live_reservation_complete_purchase_label"
|
||||||
android:textColor="@color/color_777777"
|
android:textColor="@color/color_777777"
|
||||||
@@ -94,7 +94,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginStart="26.7dp"
|
android:layout_marginStart="26.7dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:lineSpacingExtra="5.3sp"
|
android:lineSpacingExtra="5.3sp"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="14.7sp"
|
android:textSize="14.7sp"
|
||||||
@@ -110,7 +110,7 @@
|
|||||||
<TextView
|
<TextView
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:lineSpacingExtra="5.3sp"
|
android:lineSpacingExtra="5.3sp"
|
||||||
android:text="@string/screen_live_reservation_complete_date_label"
|
android:text="@string/screen_live_reservation_complete_date_label"
|
||||||
android:textColor="@color/color_777777"
|
android:textColor="@color/color_777777"
|
||||||
@@ -121,7 +121,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginStart="26.7dp"
|
android:layout_marginStart="26.7dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:lineSpacingExtra="5.3sp"
|
android:lineSpacingExtra="5.3sp"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="14.7sp"
|
android:textSize="14.7sp"
|
||||||
@@ -137,7 +137,7 @@
|
|||||||
<TextView
|
<TextView
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:lineSpacingExtra="5.3sp"
|
android:lineSpacingExtra="5.3sp"
|
||||||
android:text="@string/screen_live_reservation_complete_price_label"
|
android:text="@string/screen_live_reservation_complete_price_label"
|
||||||
android:textColor="@color/color_777777"
|
android:textColor="@color/color_777777"
|
||||||
@@ -148,7 +148,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginStart="26.7dp"
|
android:layout_marginStart="26.7dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:lineSpacingExtra="5.3sp"
|
android:lineSpacingExtra="5.3sp"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="14.7sp"
|
android:textSize="14.7sp"
|
||||||
@@ -166,7 +166,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginHorizontal="26.7dp"
|
android:layout_marginHorizontal="26.7dp"
|
||||||
android:layout_marginTop="20dp"
|
android:layout_marginTop="20dp"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:lineSpacingExtra="5sp"
|
android:lineSpacingExtra="5sp"
|
||||||
android:text="@string/screen_live_reservation_complete_payment_title"
|
android:text="@string/screen_live_reservation_complete_payment_title"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
@@ -181,7 +181,7 @@
|
|||||||
<TextView
|
<TextView
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:lineSpacingExtra="5.3sp"
|
android:lineSpacingExtra="5.3sp"
|
||||||
android:text="@string/screen_live_reservation_complete_have_label"
|
android:text="@string/screen_live_reservation_complete_have_label"
|
||||||
android:textColor="@color/color_777777"
|
android:textColor="@color/color_777777"
|
||||||
@@ -197,7 +197,7 @@
|
|||||||
android:id="@+id/tv_have_can"
|
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/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:lineSpacingExtra="5.3sp"
|
android:lineSpacingExtra="5.3sp"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="15.3sp"
|
android:textSize="15.3sp"
|
||||||
@@ -207,7 +207,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginStart="6.7dp"
|
android:layout_marginStart="6.7dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:lineSpacingExtra="5.3sp"
|
android:lineSpacingExtra="5.3sp"
|
||||||
android:text="@string/screen_live_reservation_complete_can_unit"
|
android:text="@string/screen_live_reservation_complete_can_unit"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
@@ -224,7 +224,7 @@
|
|||||||
<TextView
|
<TextView
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:lineSpacingExtra="5.3sp"
|
android:lineSpacingExtra="5.3sp"
|
||||||
android:text="@string/screen_live_reservation_complete_pay_label"
|
android:text="@string/screen_live_reservation_complete_pay_label"
|
||||||
android:textColor="@color/color_777777"
|
android:textColor="@color/color_777777"
|
||||||
@@ -240,7 +240,7 @@
|
|||||||
android:id="@+id/tv_use_can"
|
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/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:lineSpacingExtra="5.3sp"
|
android:lineSpacingExtra="5.3sp"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="15.3sp"
|
android:textSize="15.3sp"
|
||||||
@@ -250,7 +250,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginStart="6.7dp"
|
android:layout_marginStart="6.7dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:lineSpacingExtra="5.3sp"
|
android:lineSpacingExtra="5.3sp"
|
||||||
android:text="@string/screen_live_reservation_complete_can_unit"
|
android:text="@string/screen_live_reservation_complete_can_unit"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
@@ -267,7 +267,7 @@
|
|||||||
<TextView
|
<TextView
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:lineSpacingExtra="5.3sp"
|
android:lineSpacingExtra="5.3sp"
|
||||||
android:text="@string/screen_live_reservation_complete_remaining_label"
|
android:text="@string/screen_live_reservation_complete_remaining_label"
|
||||||
android:textColor="@color/color_777777"
|
android:textColor="@color/color_777777"
|
||||||
@@ -283,7 +283,7 @@
|
|||||||
android:id="@+id/tv_remaining_can"
|
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/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:lineSpacingExtra="5.3sp"
|
android:lineSpacingExtra="5.3sp"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="15.3sp"
|
android:textSize="15.3sp"
|
||||||
@@ -293,7 +293,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginStart="6.7dp"
|
android:layout_marginStart="6.7dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:lineSpacingExtra="5.3sp"
|
android:lineSpacingExtra="5.3sp"
|
||||||
android:text="@string/screen_live_reservation_complete_can_unit"
|
android:text="@string/screen_live_reservation_complete_can_unit"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
@@ -313,7 +313,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_weight="1"
|
android:layout_weight="1"
|
||||||
android:background="@drawable/bg_round_corner_10_13181b_3bb9f1"
|
android:background="@drawable/bg_round_corner_10_13181b_3bb9f1"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:paddingVertical="16dp"
|
android:paddingVertical="16dp"
|
||||||
android:text="@string/screen_live_reservation_complete_button_home"
|
android:text="@string/screen_live_reservation_complete_button_home"
|
||||||
@@ -327,7 +327,7 @@
|
|||||||
android:layout_marginStart="13.3dp"
|
android:layout_marginStart="13.3dp"
|
||||||
android:layout_weight="1"
|
android:layout_weight="1"
|
||||||
android:background="@drawable/bg_round_corner_10_3bb9f1"
|
android:background="@drawable/bg_round_corner_10_3bb9f1"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:paddingVertical="16dp"
|
android:paddingVertical="16dp"
|
||||||
android:text="@string/screen_live_reservation_complete_button_history"
|
android:text="@string/screen_live_reservation_complete_button_history"
|
||||||
|
|||||||
@@ -22,7 +22,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_gravity="center"
|
android:layout_gravity="center"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_live_reservation_status_empty"
|
android:text="@string/screen_live_reservation_status_empty"
|
||||||
android:textColor="@color/color_bbbbbb"
|
android:textColor="@color/color_bbbbbb"
|
||||||
android:textSize="15sp"
|
android:textSize="15sp"
|
||||||
|
|||||||
@@ -70,7 +70,7 @@
|
|||||||
app:layout_constraintStart_toStartOf="@+id/fl_margin"
|
app:layout_constraintStart_toStartOf="@+id/fl_margin"
|
||||||
app:layout_constraintTop_toBottomOf="@+id/fl_margin"
|
app:layout_constraintTop_toBottomOf="@+id/fl_margin"
|
||||||
tools:text="@string/screen_live_room_notice_prefix"
|
tools:text="@string/screen_live_room_notice_prefix"
|
||||||
android:fontFamily="@font/pretendard_medium" />
|
android:fontFamily="@font/medium" />
|
||||||
|
|
||||||
<LinearLayout
|
<LinearLayout
|
||||||
android:id="@+id/ll_notice"
|
android:id="@+id/ll_notice"
|
||||||
@@ -107,7 +107,7 @@
|
|||||||
android:id="@+id/tv_notice_big"
|
android:id="@+id/tv_notice_big"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_live_room_notice_prefix"
|
android:text="@string/screen_live_room_notice_prefix"
|
||||||
android:textColor="@color/white"
|
android:textColor="@color/white"
|
||||||
android:textSize="11.3sp" />
|
android:textSize="11.3sp" />
|
||||||
@@ -116,7 +116,7 @@
|
|||||||
android:id="@+id/tv_notice"
|
android:id="@+id/tv_notice"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_light"
|
android:fontFamily="@font/light"
|
||||||
android:lineSpacingExtra="4dp"
|
android:lineSpacingExtra="4dp"
|
||||||
android:textColor="@color/white"
|
android:textColor="@color/white"
|
||||||
android:textSize="11.3sp"
|
android:textSize="11.3sp"
|
||||||
@@ -160,7 +160,7 @@
|
|||||||
android:id="@+id/tv_menu_pan_title"
|
android:id="@+id/tv_menu_pan_title"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_live_room_menu_prefix"
|
android:text="@string/screen_live_room_menu_prefix"
|
||||||
android:textColor="@color/white"
|
android:textColor="@color/white"
|
||||||
android:textSize="11.3sp" />
|
android:textSize="11.3sp" />
|
||||||
@@ -169,7 +169,7 @@
|
|||||||
android:id="@+id/tv_menu_pan_detail"
|
android:id="@+id/tv_menu_pan_detail"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_light"
|
android:fontFamily="@font/light"
|
||||||
android:lineSpacingExtra="4dp"
|
android:lineSpacingExtra="4dp"
|
||||||
android:textColor="@color/white"
|
android:textColor="@color/white"
|
||||||
android:textSize="11.3sp"
|
android:textSize="11.3sp"
|
||||||
@@ -200,7 +200,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_alignParentStart="true"
|
android:layout_alignParentStart="true"
|
||||||
android:background="@drawable/bg_round_corner_5_3_transparent_ff5c49"
|
android:background="@drawable/bg_round_corner_5_3_transparent_ff5c49"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:paddingHorizontal="8dp"
|
android:paddingHorizontal="8dp"
|
||||||
android:paddingVertical="4.7dp"
|
android:paddingVertical="4.7dp"
|
||||||
android:text="@string/screen_live_room_leave"
|
android:text="@string/screen_live_room_leave"
|
||||||
@@ -223,7 +223,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginEnd="8dp"
|
android:layout_marginEnd="8dp"
|
||||||
android:background="@drawable/bg_round_corner_5_3_transparent_bbbbbb"
|
android:background="@drawable/bg_round_corner_5_3_transparent_bbbbbb"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:paddingHorizontal="8dp"
|
android:paddingHorizontal="8dp"
|
||||||
android:paddingVertical="4.7dp"
|
android:paddingVertical="4.7dp"
|
||||||
@@ -239,7 +239,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginEnd="8dp"
|
android:layout_marginEnd="8dp"
|
||||||
android:background="@drawable/bg_round_corner_5_3_transparent_bbbbbb"
|
android:background="@drawable/bg_round_corner_5_3_transparent_bbbbbb"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:paddingHorizontal="8dp"
|
android:paddingHorizontal="8dp"
|
||||||
android:paddingVertical="4.7dp"
|
android:paddingVertical="4.7dp"
|
||||||
@@ -254,7 +254,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginEnd="8dp"
|
android:layout_marginEnd="8dp"
|
||||||
android:background="@drawable/bg_round_corner_5_3_transparent_bbbbbb"
|
android:background="@drawable/bg_round_corner_5_3_transparent_bbbbbb"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:paddingHorizontal="8dp"
|
android:paddingHorizontal="8dp"
|
||||||
android:paddingVertical="4.7dp"
|
android:paddingVertical="4.7dp"
|
||||||
@@ -348,7 +348,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginEnd="2.7dp"
|
android:layout_marginEnd="2.7dp"
|
||||||
android:background="@drawable/bg_circle_ea3a25"
|
android:background="@drawable/bg_circle_ea3a25"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:padding="2.7dp"
|
android:padding="2.7dp"
|
||||||
android:text="@string/screen_live_room_age_badge"
|
android:text="@string/screen_live_room_age_badge"
|
||||||
android:textColor="@color/white"
|
android:textColor="@color/white"
|
||||||
@@ -360,7 +360,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:ellipsize="end"
|
android:ellipsize="end"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:lines="1"
|
android:lines="1"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="12sp"
|
android:textSize="12sp"
|
||||||
@@ -379,7 +379,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:ellipsize="end"
|
android:ellipsize="end"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:lines="1"
|
android:lines="1"
|
||||||
android:textColor="@color/color_777777"
|
android:textColor="@color/color_777777"
|
||||||
android:textSize="12sp"
|
android:textSize="12sp"
|
||||||
@@ -419,7 +419,7 @@
|
|||||||
android:layout_alignParentStart="true"
|
android:layout_alignParentStart="true"
|
||||||
android:layout_centerVertical="true"
|
android:layout_centerVertical="true"
|
||||||
android:background="@drawable/bg_round_corner_5_3_transparent_bbbbbb"
|
android:background="@drawable/bg_round_corner_5_3_transparent_bbbbbb"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:paddingHorizontal="8dp"
|
android:paddingHorizontal="8dp"
|
||||||
android:paddingVertical="5.3dp"
|
android:paddingVertical="5.3dp"
|
||||||
android:text="@string/screen_live_room_notice"
|
android:text="@string/screen_live_room_notice"
|
||||||
@@ -435,7 +435,7 @@
|
|||||||
android:layout_marginStart="5.3dp"
|
android:layout_marginStart="5.3dp"
|
||||||
android:layout_toEndOf="@+id/tv_notification"
|
android:layout_toEndOf="@+id/tv_notification"
|
||||||
android:background="@drawable/bg_round_corner_5_3_transparent_bbbbbb"
|
android:background="@drawable/bg_round_corner_5_3_transparent_bbbbbb"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:paddingHorizontal="8dp"
|
android:paddingHorizontal="8dp"
|
||||||
android:paddingVertical="5.3dp"
|
android:paddingVertical="5.3dp"
|
||||||
android:text="@string/screen_live_room_menu"
|
android:text="@string/screen_live_room_menu"
|
||||||
@@ -471,7 +471,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginStart="6.7dp"
|
android:layout_marginStart="6.7dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center_vertical"
|
android:gravity="center_vertical"
|
||||||
android:textColor="@color/color_bbbbbb"
|
android:textColor="@color/color_bbbbbb"
|
||||||
android:textSize="11sp"
|
android:textSize="11sp"
|
||||||
@@ -501,7 +501,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginStart="6.7dp"
|
android:layout_marginStart="6.7dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center_vertical"
|
android:gravity="center_vertical"
|
||||||
android:textColor="@color/color_bbbbbb"
|
android:textColor="@color/color_bbbbbb"
|
||||||
android:textSize="11sp"
|
android:textSize="11sp"
|
||||||
@@ -523,7 +523,7 @@
|
|||||||
<TextView
|
<TextView
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_live_room_participants"
|
android:text="@string/screen_live_room_participants"
|
||||||
android:textColor="@color/color_bbbbbb"
|
android:textColor="@color/color_bbbbbb"
|
||||||
android:textSize="11sp"
|
android:textSize="11sp"
|
||||||
@@ -534,7 +534,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginStart="6.7dp"
|
android:layout_marginStart="6.7dp"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:textColor="@color/color_bbbbbb"
|
android:textColor="@color/color_bbbbbb"
|
||||||
android:textSize="11sp"
|
android:textSize="11sp"
|
||||||
tools:ignore="RelativeOverlap,SmallSp"
|
tools:ignore="RelativeOverlap,SmallSp"
|
||||||
@@ -704,7 +704,7 @@
|
|||||||
app:layout_constraintBottom_toTopOf="@+id/rl_input_chat"
|
app:layout_constraintBottom_toTopOf="@+id/rl_input_chat"
|
||||||
app:layout_constraintEnd_toEndOf="parent"
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
android:fontFamily="@font/pretendard_medium" />
|
android:fontFamily="@font/medium" />
|
||||||
|
|
||||||
<RelativeLayout
|
<RelativeLayout
|
||||||
android:id="@+id/rl_input_chat"
|
android:id="@+id/rl_input_chat"
|
||||||
@@ -721,7 +721,7 @@
|
|||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:background="@drawable/bg_round_corner_10_232323_eeeeee"
|
android:background="@drawable/bg_round_corner_10_232323_eeeeee"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center_vertical"
|
android:gravity="center_vertical"
|
||||||
android:hint="@string/screen_live_room_chat_hint"
|
android:hint="@string/screen_live_room_chat_hint"
|
||||||
android:imeOptions="actionSend"
|
android:imeOptions="actionSend"
|
||||||
|
|||||||
@@ -22,7 +22,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_centerVertical="true"
|
android:layout_centerVertical="true"
|
||||||
android:drawablePadding="6.7dp"
|
android:drawablePadding="6.7dp"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_live_room_create_title"
|
android:text="@string/screen_live_room_create_title"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="18.3sp"
|
android:textSize="18.3sp"
|
||||||
@@ -40,7 +40,7 @@
|
|||||||
android:text="@string/screen_live_room_create_get_recent_info"
|
android:text="@string/screen_live_room_create_get_recent_info"
|
||||||
android:textColor="@color/color_3bb9f1"
|
android:textColor="@color/color_3bb9f1"
|
||||||
android:textSize="12sp"
|
android:textSize="12sp"
|
||||||
android:fontFamily="@font/pretendard_medium" />
|
android:fontFamily="@font/medium" />
|
||||||
</RelativeLayout>
|
</RelativeLayout>
|
||||||
|
|
||||||
<ScrollView
|
<ScrollView
|
||||||
@@ -62,7 +62,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginHorizontal="13.3dp"
|
android:layout_marginHorizontal="13.3dp"
|
||||||
android:layout_marginTop="13.3dp"
|
android:layout_marginTop="13.3dp"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_live_room_create_background_label"
|
android:text="@string/screen_live_room_create_background_label"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="16.7sp" />
|
android:textSize="16.7sp" />
|
||||||
@@ -106,7 +106,7 @@
|
|||||||
<TextView
|
<TextView
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_live_room_title_label"
|
android:text="@string/screen_live_room_title_label"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="16.7sp" />
|
android:textSize="16.7sp" />
|
||||||
@@ -117,7 +117,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="13.3dp"
|
android:layout_marginTop="13.3dp"
|
||||||
android:background="@drawable/edittext_underline"
|
android:background="@drawable/edittext_underline"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:hint="@string/screen_live_room_title_hint"
|
android:hint="@string/screen_live_room_title_hint"
|
||||||
android:importantForAutofill="no"
|
android:importantForAutofill="no"
|
||||||
android:inputType="textWebEditText"
|
android:inputType="textWebEditText"
|
||||||
@@ -146,7 +146,7 @@
|
|||||||
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:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:lineSpacingExtra="5sp"
|
android:lineSpacingExtra="5sp"
|
||||||
android:text="@string/screen_live_room_notice"
|
android:text="@string/screen_live_room_notice"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
@@ -161,7 +161,7 @@
|
|||||||
android:id="@+id/tv_number_of_characters"
|
android:id="@+id/tv_number_of_characters"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_live_room_create_notice_char_count_placeholder"
|
android:text="@string/screen_live_room_create_notice_char_count_placeholder"
|
||||||
android:textColor="@color/color_ff5c49"
|
android:textColor="@color/color_ff5c49"
|
||||||
android:textSize="13.3sp" />
|
android:textSize="13.3sp" />
|
||||||
@@ -169,7 +169,7 @@
|
|||||||
<TextView
|
<TextView
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_live_room_create_notice_char_limit"
|
android:text="@string/screen_live_room_create_notice_char_limit"
|
||||||
android:textColor="@color/color_777777"
|
android:textColor="@color/color_777777"
|
||||||
android:textSize="13.3sp" />
|
android:textSize="13.3sp" />
|
||||||
@@ -182,7 +182,7 @@
|
|||||||
android:layout_height="200dp"
|
android:layout_height="200dp"
|
||||||
android:layout_marginTop="13.3dp"
|
android:layout_marginTop="13.3dp"
|
||||||
android:background="@drawable/bg_round_corner_6_7_222222"
|
android:background="@drawable/bg_round_corner_6_7_222222"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="top"
|
android:gravity="top"
|
||||||
android:hint="@string/screen_live_room_notice_hint"
|
android:hint="@string/screen_live_room_notice_hint"
|
||||||
android:importantForAutofill="no"
|
android:importantForAutofill="no"
|
||||||
@@ -208,7 +208,7 @@
|
|||||||
<TextView
|
<TextView
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_live_room_menu_label_title"
|
android:text="@string/screen_live_room_menu_label_title"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="16.7sp" />
|
android:textSize="16.7sp" />
|
||||||
@@ -222,7 +222,7 @@
|
|||||||
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:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:lineSpacingExtra="5sp"
|
android:lineSpacingExtra="5sp"
|
||||||
android:text="@string/screen_live_room_menu_activate_question"
|
android:text="@string/screen_live_room_menu_activate_question"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
@@ -273,7 +273,7 @@
|
|||||||
android:id="@+id/tv_select_menu_1"
|
android:id="@+id/tv_select_menu_1"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_live_room_menu_preset_1"
|
android:text="@string/screen_live_room_menu_preset_1"
|
||||||
android:textColor="@color/color_3bb9f1"
|
android:textColor="@color/color_3bb9f1"
|
||||||
android:textSize="14.7sp" />
|
android:textSize="14.7sp" />
|
||||||
@@ -302,7 +302,7 @@
|
|||||||
android:id="@+id/tv_select_menu_2"
|
android:id="@+id/tv_select_menu_2"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_live_room_menu_preset_2"
|
android:text="@string/screen_live_room_menu_preset_2"
|
||||||
android:textColor="@color/color_555555"
|
android:textColor="@color/color_555555"
|
||||||
android:textSize="14.7sp" />
|
android:textSize="14.7sp" />
|
||||||
@@ -331,7 +331,7 @@
|
|||||||
android:id="@+id/tv_select_menu_3"
|
android:id="@+id/tv_select_menu_3"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_live_room_menu_preset_3"
|
android:text="@string/screen_live_room_menu_preset_3"
|
||||||
android:textColor="@color/color_555555"
|
android:textColor="@color/color_555555"
|
||||||
android:textSize="14.7sp" />
|
android:textSize="14.7sp" />
|
||||||
@@ -344,7 +344,7 @@
|
|||||||
android:layout_height="200dp"
|
android:layout_height="200dp"
|
||||||
android:layout_marginTop="13.3dp"
|
android:layout_marginTop="13.3dp"
|
||||||
android:background="@drawable/bg_round_corner_6_7_222222"
|
android:background="@drawable/bg_round_corner_6_7_222222"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="top"
|
android:gravity="top"
|
||||||
android:hint="@string/screen_live_room_menu_hint"
|
android:hint="@string/screen_live_room_menu_hint"
|
||||||
android:importantForAutofill="no"
|
android:importantForAutofill="no"
|
||||||
@@ -371,7 +371,7 @@
|
|||||||
<TextView
|
<TextView
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_profile_update_interest_title"
|
android:text="@string/screen_profile_update_interest_title"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="16.7sp" />
|
android:textSize="16.7sp" />
|
||||||
@@ -382,7 +382,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="13.3dp"
|
android:layout_marginTop="13.3dp"
|
||||||
android:background="@drawable/bg_round_corner_24_3_13181b_3bb9f1"
|
android:background="@drawable/bg_round_corner_24_3_13181b_3bb9f1"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:paddingVertical="13.7dp"
|
android:paddingVertical="13.7dp"
|
||||||
android:text="@string/screen_profile_update_interest_select"
|
android:text="@string/screen_profile_update_interest_select"
|
||||||
@@ -403,7 +403,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginHorizontal="13.3dp"
|
android:layout_marginHorizontal="13.3dp"
|
||||||
android:layout_marginTop="33.3dp"
|
android:layout_marginTop="33.3dp"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:lineSpacingExtra="5sp"
|
android:lineSpacingExtra="5sp"
|
||||||
android:text="@string/screen_live_room_create_time_label"
|
android:text="@string/screen_live_room_create_time_label"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
@@ -439,7 +439,7 @@
|
|||||||
android:id="@+id/tv_time_now"
|
android:id="@+id/tv_time_now"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_live_room_create_time_now"
|
android:text="@string/screen_live_room_create_time_now"
|
||||||
android:textColor="@color/color_3bb9f1"
|
android:textColor="@color/color_3bb9f1"
|
||||||
android:textSize="14.7sp" />
|
android:textSize="14.7sp" />
|
||||||
@@ -468,7 +468,7 @@
|
|||||||
android:id="@+id/tv_time_reservation"
|
android:id="@+id/tv_time_reservation"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_live_room_create_time_reservation"
|
android:text="@string/screen_live_room_create_time_reservation"
|
||||||
android:textColor="@color/color_3bb9f1"
|
android:textColor="@color/color_3bb9f1"
|
||||||
android:textSize="14.7sp" />
|
android:textSize="14.7sp" />
|
||||||
@@ -495,7 +495,7 @@
|
|||||||
<TextView
|
<TextView
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_live_room_create_reservation_date_label"
|
android:text="@string/screen_live_room_create_reservation_date_label"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="13.3sp" />
|
android:textSize="13.3sp" />
|
||||||
@@ -506,7 +506,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="6.7dp"
|
android:layout_marginTop="6.7dp"
|
||||||
android:background="@drawable/bg_round_corner_6_7_13181b_3bb9f1"
|
android:background="@drawable/bg_round_corner_6_7_13181b_3bb9f1"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:paddingVertical="15.3dp"
|
android:paddingVertical="15.3dp"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
@@ -525,7 +525,7 @@
|
|||||||
<TextView
|
<TextView
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_live_room_create_reservation_time_label"
|
android:text="@string/screen_live_room_create_reservation_time_label"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="13.3sp" />
|
android:textSize="13.3sp" />
|
||||||
@@ -536,7 +536,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="6.7dp"
|
android:layout_marginTop="6.7dp"
|
||||||
android:background="@drawable/bg_round_corner_6_7_13181b_3bb9f1"
|
android:background="@drawable/bg_round_corner_6_7_13181b_3bb9f1"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:paddingVertical="15.3dp"
|
android:paddingVertical="15.3dp"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
@@ -550,7 +550,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginHorizontal="13.3dp"
|
android:layout_marginHorizontal="13.3dp"
|
||||||
android:layout_marginTop="33.3dp"
|
android:layout_marginTop="33.3dp"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:lineSpacingExtra="5sp"
|
android:lineSpacingExtra="5sp"
|
||||||
android:text="@string/screen_live_room_create_capacity_label"
|
android:text="@string/screen_live_room_create_capacity_label"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
@@ -563,7 +563,7 @@
|
|||||||
android:layout_marginHorizontal="13.3dp"
|
android:layout_marginHorizontal="13.3dp"
|
||||||
android:layout_marginTop="13.3dp"
|
android:layout_marginTop="13.3dp"
|
||||||
android:background="@drawable/bg_round_corner_6_7_222222"
|
android:background="@drawable/bg_round_corner_6_7_222222"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:hint="@string/screen_live_room_create_capacity_hint"
|
android:hint="@string/screen_live_room_create_capacity_hint"
|
||||||
android:importantForAutofill="no"
|
android:importantForAutofill="no"
|
||||||
@@ -580,7 +580,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginHorizontal="13.3dp"
|
android:layout_marginHorizontal="13.3dp"
|
||||||
android:layout_marginTop="33.3dp"
|
android:layout_marginTop="33.3dp"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:lineSpacingExtra="5sp"
|
android:lineSpacingExtra="5sp"
|
||||||
android:text="@string/screen_live_room_create_visibility_label"
|
android:text="@string/screen_live_room_create_visibility_label"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
@@ -615,7 +615,7 @@
|
|||||||
android:id="@+id/tv_open"
|
android:id="@+id/tv_open"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_live_room_create_open_label"
|
android:text="@string/screen_live_room_create_open_label"
|
||||||
android:textColor="@color/color_3bb9f1"
|
android:textColor="@color/color_3bb9f1"
|
||||||
android:textSize="14.7sp" />
|
android:textSize="14.7sp" />
|
||||||
@@ -644,7 +644,7 @@
|
|||||||
android:id="@+id/tv_private"
|
android:id="@+id/tv_private"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_live_room_create_private_label"
|
android:text="@string/screen_live_room_create_private_label"
|
||||||
android:textColor="@color/color_3bb9f1"
|
android:textColor="@color/color_3bb9f1"
|
||||||
android:textSize="14.7sp" />
|
android:textSize="14.7sp" />
|
||||||
@@ -663,7 +663,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginHorizontal="13.3dp"
|
android:layout_marginHorizontal="13.3dp"
|
||||||
android:layout_marginTop="33.3dp"
|
android:layout_marginTop="33.3dp"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:lineSpacingExtra="5sp"
|
android:lineSpacingExtra="5sp"
|
||||||
android:text="@string/screen_live_room_create_password_label"
|
android:text="@string/screen_live_room_create_password_label"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
@@ -676,7 +676,7 @@
|
|||||||
android:layout_marginHorizontal="13.3dp"
|
android:layout_marginHorizontal="13.3dp"
|
||||||
android:layout_marginTop="13.3dp"
|
android:layout_marginTop="13.3dp"
|
||||||
android:background="@drawable/bg_round_corner_6_7_222222"
|
android:background="@drawable/bg_round_corner_6_7_222222"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:hint="@string/screen_live_room_create_password_hint"
|
android:hint="@string/screen_live_room_create_password_hint"
|
||||||
android:importantForAutofill="no"
|
android:importantForAutofill="no"
|
||||||
@@ -694,7 +694,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginHorizontal="13.3dp"
|
android:layout_marginHorizontal="13.3dp"
|
||||||
android:layout_marginTop="33.3dp"
|
android:layout_marginTop="33.3dp"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:lineSpacingExtra="5sp"
|
android:lineSpacingExtra="5sp"
|
||||||
android:text="@string/screen_live_room_create_creator_join_label"
|
android:text="@string/screen_live_room_create_creator_join_label"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
@@ -729,7 +729,7 @@
|
|||||||
android:id="@+id/tv_available_join_creator_y"
|
android:id="@+id/tv_available_join_creator_y"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_live_room_create_creator_join_available"
|
android:text="@string/screen_live_room_create_creator_join_available"
|
||||||
android:textColor="@color/color_3bb9f1"
|
android:textColor="@color/color_3bb9f1"
|
||||||
android:textSize="14.7sp" />
|
android:textSize="14.7sp" />
|
||||||
@@ -758,7 +758,7 @@
|
|||||||
android:id="@+id/tv_available_join_creator_n"
|
android:id="@+id/tv_available_join_creator_n"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_live_room_create_creator_join_unavailable"
|
android:text="@string/screen_live_room_create_creator_join_unavailable"
|
||||||
android:textColor="@color/color_3bb9f1"
|
android:textColor="@color/color_3bb9f1"
|
||||||
android:textSize="14.7sp" />
|
android:textSize="14.7sp" />
|
||||||
@@ -777,7 +777,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginHorizontal="13.3dp"
|
android:layout_marginHorizontal="13.3dp"
|
||||||
android:layout_marginTop="33.3dp"
|
android:layout_marginTop="33.3dp"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:lineSpacingExtra="5sp"
|
android:lineSpacingExtra="5sp"
|
||||||
android:text="@string/screen_live_room_create_age_label"
|
android:text="@string/screen_live_room_create_age_label"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
@@ -812,7 +812,7 @@
|
|||||||
android:id="@+id/tv_age_all"
|
android:id="@+id/tv_age_all"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_live_room_create_age_all"
|
android:text="@string/screen_live_room_create_age_all"
|
||||||
android:textColor="@color/color_3bb9f1"
|
android:textColor="@color/color_3bb9f1"
|
||||||
android:textSize="14.7sp" />
|
android:textSize="14.7sp" />
|
||||||
@@ -841,7 +841,7 @@
|
|||||||
android:id="@+id/tv_age_19"
|
android:id="@+id/tv_age_19"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_live_room_age_limit_adult"
|
android:text="@string/screen_live_room_age_limit_adult"
|
||||||
android:textColor="@color/color_3bb9f1"
|
android:textColor="@color/color_3bb9f1"
|
||||||
android:textSize="14.7sp" />
|
android:textSize="14.7sp" />
|
||||||
@@ -862,7 +862,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginHorizontal="13.3dp"
|
android:layout_marginHorizontal="13.3dp"
|
||||||
android:layout_marginTop="33.3dp"
|
android:layout_marginTop="33.3dp"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:lineSpacingExtra="5sp"
|
android:lineSpacingExtra="5sp"
|
||||||
android:text="@string/screen_live_room_create_price_label"
|
android:text="@string/screen_live_room_create_price_label"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
@@ -881,7 +881,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_weight="1"
|
android:layout_weight="1"
|
||||||
android:background="@drawable/bg_live_room_price_select"
|
android:background="@drawable/bg_live_room_price_select"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:paddingVertical="16.7dp"
|
android:paddingVertical="16.7dp"
|
||||||
android:text="@string/screen_live_room_create_price_free"
|
android:text="@string/screen_live_room_create_price_free"
|
||||||
@@ -895,7 +895,7 @@
|
|||||||
android:layout_marginHorizontal="13.3dp"
|
android:layout_marginHorizontal="13.3dp"
|
||||||
android:layout_weight="1"
|
android:layout_weight="1"
|
||||||
android:background="@drawable/bg_live_room_price_select"
|
android:background="@drawable/bg_live_room_price_select"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:paddingVertical="16.7dp"
|
android:paddingVertical="16.7dp"
|
||||||
android:text="@string/screen_live_room_create_price_100"
|
android:text="@string/screen_live_room_create_price_100"
|
||||||
@@ -908,7 +908,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_weight="1"
|
android:layout_weight="1"
|
||||||
android:background="@drawable/bg_live_room_price_select"
|
android:background="@drawable/bg_live_room_price_select"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:paddingVertical="16.7dp"
|
android:paddingVertical="16.7dp"
|
||||||
android:text="@string/screen_live_room_create_price_300"
|
android:text="@string/screen_live_room_create_price_300"
|
||||||
@@ -929,7 +929,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_weight="1"
|
android:layout_weight="1"
|
||||||
android:background="@drawable/bg_live_room_price_select"
|
android:background="@drawable/bg_live_room_price_select"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:paddingVertical="16.7dp"
|
android:paddingVertical="16.7dp"
|
||||||
android:text="@string/screen_live_room_create_price_500"
|
android:text="@string/screen_live_room_create_price_500"
|
||||||
@@ -943,7 +943,7 @@
|
|||||||
android:layout_marginHorizontal="13.3dp"
|
android:layout_marginHorizontal="13.3dp"
|
||||||
android:layout_weight="1"
|
android:layout_weight="1"
|
||||||
android:background="@drawable/bg_live_room_price_select"
|
android:background="@drawable/bg_live_room_price_select"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:paddingVertical="16.7dp"
|
android:paddingVertical="16.7dp"
|
||||||
android:text="@string/screen_live_room_create_price_1000"
|
android:text="@string/screen_live_room_create_price_1000"
|
||||||
@@ -956,7 +956,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_weight="1"
|
android:layout_weight="1"
|
||||||
android:background="@drawable/bg_live_room_price_select"
|
android:background="@drawable/bg_live_room_price_select"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:paddingVertical="16.7dp"
|
android:paddingVertical="16.7dp"
|
||||||
android:text="@string/screen_live_room_create_price_2000"
|
android:text="@string/screen_live_room_create_price_2000"
|
||||||
@@ -980,7 +980,7 @@
|
|||||||
android:layout_marginHorizontal="13.3dp"
|
android:layout_marginHorizontal="13.3dp"
|
||||||
android:layout_toStartOf="@+id/tv_can"
|
android:layout_toStartOf="@+id/tv_can"
|
||||||
android:background="@null"
|
android:background="@null"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:importantForAutofill="no"
|
android:importantForAutofill="no"
|
||||||
android:inputType="numberDecimal"
|
android:inputType="numberDecimal"
|
||||||
@@ -998,7 +998,7 @@
|
|||||||
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/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_live_room_create_price_unit"
|
android:text="@string/screen_live_room_create_price_unit"
|
||||||
android:textColor="@color/color_3bb9f1"
|
android:textColor="@color/color_3bb9f1"
|
||||||
android:textSize="13.3sp" />
|
android:textSize="13.3sp" />
|
||||||
@@ -1017,7 +1017,7 @@
|
|||||||
android:layout_height="50dp"
|
android:layout_height="50dp"
|
||||||
android:layout_margin="13.3dp"
|
android:layout_margin="13.3dp"
|
||||||
android:background="@drawable/bg_round_corner_10_3bb9f1"
|
android:background="@drawable/bg_round_corner_10_3bb9f1"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:text="@string/screen_live_room_create_submit"
|
android:text="@string/screen_live_room_create_submit"
|
||||||
android:textColor="@color/white"
|
android:textColor="@color/white"
|
||||||
|
|||||||
@@ -34,7 +34,7 @@
|
|||||||
<TextView
|
<TextView
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_live_room_title_label"
|
android:text="@string/screen_live_room_title_label"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="16.7sp" />
|
android:textSize="16.7sp" />
|
||||||
@@ -44,7 +44,7 @@
|
|||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:background="@drawable/edittext_underline"
|
android:background="@drawable/edittext_underline"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:hint="@string/screen_live_room_title_hint"
|
android:hint="@string/screen_live_room_title_hint"
|
||||||
android:importantForAutofill="no"
|
android:importantForAutofill="no"
|
||||||
android:inputType="textWebEditText"
|
android:inputType="textWebEditText"
|
||||||
@@ -73,7 +73,7 @@
|
|||||||
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:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:lineSpacingExtra="5sp"
|
android:lineSpacingExtra="5sp"
|
||||||
android:text="@string/screen_live_room_notice"
|
android:text="@string/screen_live_room_notice"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
@@ -88,7 +88,7 @@
|
|||||||
android:id="@+id/tv_number_of_characters"
|
android:id="@+id/tv_number_of_characters"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_live_room_create_notice_char_count_placeholder"
|
android:text="@string/screen_live_room_create_notice_char_count_placeholder"
|
||||||
android:textColor="@color/color_ff5c49"
|
android:textColor="@color/color_ff5c49"
|
||||||
android:textSize="13.3sp" />
|
android:textSize="13.3sp" />
|
||||||
@@ -96,7 +96,7 @@
|
|||||||
<TextView
|
<TextView
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_live_room_create_notice_char_limit"
|
android:text="@string/screen_live_room_create_notice_char_limit"
|
||||||
android:textColor="@color/color_777777"
|
android:textColor="@color/color_777777"
|
||||||
android:textSize="13.3sp" />
|
android:textSize="13.3sp" />
|
||||||
@@ -108,7 +108,7 @@
|
|||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="200dp"
|
android:layout_height="200dp"
|
||||||
android:background="@drawable/bg_round_corner_6_7_222222"
|
android:background="@drawable/bg_round_corner_6_7_222222"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="top"
|
android:gravity="top"
|
||||||
android:hint="@string/screen_live_room_notice_hint"
|
android:hint="@string/screen_live_room_notice_hint"
|
||||||
android:importantForAutofill="no"
|
android:importantForAutofill="no"
|
||||||
@@ -130,7 +130,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginHorizontal="13.3dp"
|
android:layout_marginHorizontal="13.3dp"
|
||||||
android:layout_marginTop="33.3dp"
|
android:layout_marginTop="33.3dp"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:lineSpacingExtra="5sp"
|
android:lineSpacingExtra="5sp"
|
||||||
android:text="@string/screen_live_room_create_time_label"
|
android:text="@string/screen_live_room_create_time_label"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
@@ -154,7 +154,7 @@
|
|||||||
<TextView
|
<TextView
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_live_room_create_reservation_date_label"
|
android:text="@string/screen_live_room_create_reservation_date_label"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="13.3sp" />
|
android:textSize="13.3sp" />
|
||||||
@@ -165,7 +165,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="6.7dp"
|
android:layout_marginTop="6.7dp"
|
||||||
android:background="@drawable/bg_round_corner_6_7_333333_3bb9f1"
|
android:background="@drawable/bg_round_corner_6_7_333333_3bb9f1"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:paddingVertical="15.3dp"
|
android:paddingVertical="15.3dp"
|
||||||
android:text="@string/screen_live_room_create_reservation_date_placeholder"
|
android:text="@string/screen_live_room_create_reservation_date_placeholder"
|
||||||
@@ -185,7 +185,7 @@
|
|||||||
<TextView
|
<TextView
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_live_room_create_reservation_time_label"
|
android:text="@string/screen_live_room_create_reservation_time_label"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="13.3sp" />
|
android:textSize="13.3sp" />
|
||||||
@@ -196,7 +196,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="6.7dp"
|
android:layout_marginTop="6.7dp"
|
||||||
android:background="@drawable/bg_round_corner_6_7_333333_3bb9f1"
|
android:background="@drawable/bg_round_corner_6_7_333333_3bb9f1"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:paddingVertical="15.3dp"
|
android:paddingVertical="15.3dp"
|
||||||
android:text="@string/screen_live_room_create_reservation_time_placeholder"
|
android:text="@string/screen_live_room_create_reservation_time_placeholder"
|
||||||
@@ -211,7 +211,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginHorizontal="13.3dp"
|
android:layout_marginHorizontal="13.3dp"
|
||||||
android:layout_marginTop="33.3dp"
|
android:layout_marginTop="33.3dp"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:lineSpacingExtra="5sp"
|
android:lineSpacingExtra="5sp"
|
||||||
android:text="@string/screen_live_room_create_capacity_label"
|
android:text="@string/screen_live_room_create_capacity_label"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
@@ -223,7 +223,7 @@
|
|||||||
android:layout_height="48.7dp"
|
android:layout_height="48.7dp"
|
||||||
android:layout_margin="13.3dp"
|
android:layout_margin="13.3dp"
|
||||||
android:background="@drawable/bg_round_corner_6_7_222222"
|
android:background="@drawable/bg_round_corner_6_7_222222"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:hint="@string/screen_live_room_create_capacity_hint"
|
android:hint="@string/screen_live_room_create_capacity_hint"
|
||||||
android:importantForAutofill="no"
|
android:importantForAutofill="no"
|
||||||
@@ -253,7 +253,7 @@
|
|||||||
android:layout_height="50dp"
|
android:layout_height="50dp"
|
||||||
android:layout_margin="13.3dp"
|
android:layout_margin="13.3dp"
|
||||||
android:background="@drawable/bg_round_corner_10_3bb9f1"
|
android:background="@drawable/bg_round_corner_10_3bb9f1"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:text="@string/screen_live_room_profile_edit_title"
|
android:text="@string/screen_live_room_profile_edit_title"
|
||||||
android:textColor="@color/white"
|
android:textColor="@color/white"
|
||||||
|
|||||||
@@ -41,7 +41,7 @@
|
|||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:background="@android:color/transparent"
|
android:background="@android:color/transparent"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:hint="@string/hint_email"
|
android:hint="@string/hint_email"
|
||||||
android:importantForAutofill="no"
|
android:importantForAutofill="no"
|
||||||
android:inputType="textEmailAddress"
|
android:inputType="textEmailAddress"
|
||||||
@@ -71,7 +71,7 @@
|
|||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:background="@android:color/transparent"
|
android:background="@android:color/transparent"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:hint="@string/hint_password"
|
android:hint="@string/hint_password"
|
||||||
android:imeOptions="actionDone"
|
android:imeOptions="actionDone"
|
||||||
android:importantForAutofill="no"
|
android:importantForAutofill="no"
|
||||||
@@ -89,7 +89,7 @@
|
|||||||
android:layout_marginHorizontal="13.3dp"
|
android:layout_marginHorizontal="13.3dp"
|
||||||
android:layout_marginTop="40dp"
|
android:layout_marginTop="40dp"
|
||||||
android:background="@drawable/bg_round_corner_6_7_3bb9f1"
|
android:background="@drawable/bg_round_corner_6_7_3bb9f1"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:paddingVertical="16dp"
|
android:paddingVertical="16dp"
|
||||||
android:text="@string/title_login"
|
android:text="@string/title_login"
|
||||||
@@ -101,7 +101,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="30dp"
|
android:layout_marginTop="30dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:paddingVertical="10dp"
|
android:paddingVertical="10dp"
|
||||||
android:text="@string/forgot_password"
|
android:text="@string/forgot_password"
|
||||||
android:textColor="@color/color_bbbbbb"
|
android:textColor="@color/color_bbbbbb"
|
||||||
@@ -112,7 +112,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="10dp"
|
android:layout_marginTop="10dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:paddingVertical="10dp"
|
android:paddingVertical="10dp"
|
||||||
android:text="@string/signup_prompt"
|
android:text="@string/signup_prompt"
|
||||||
android:textColor="@color/color_bbbbbb"
|
android:textColor="@color/color_bbbbbb"
|
||||||
|
|||||||
@@ -49,7 +49,7 @@
|
|||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="13sp"
|
android:textSize="13sp"
|
||||||
tools:text="JFLA 커버곡 Avicii for your self"
|
tools:text="JFLA 커버곡 Avicii for your self"
|
||||||
android:fontFamily="@font/pretendard_medium" />
|
android:fontFamily="@font/medium" />
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
android:id="@+id/tv_nickname"
|
android:id="@+id/tv_nickname"
|
||||||
@@ -60,7 +60,7 @@
|
|||||||
android:textSize="11sp"
|
android:textSize="11sp"
|
||||||
tools:ignore="SmallSp"
|
tools:ignore="SmallSp"
|
||||||
tools:text="JFLA 커버곡 Avicii for your self"
|
tools:text="JFLA 커버곡 Avicii for your self"
|
||||||
android:fontFamily="@font/pretendard_medium" />
|
android:fontFamily="@font/medium" />
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
|
||||||
<ImageView
|
<ImageView
|
||||||
@@ -117,7 +117,7 @@
|
|||||||
app:layout_constraintStart_toEndOf="@+id/iv_player_cover"
|
app:layout_constraintStart_toEndOf="@+id/iv_player_cover"
|
||||||
app:layout_constraintTop_toTopOf="@+id/iv_player_cover"
|
app:layout_constraintTop_toTopOf="@+id/iv_player_cover"
|
||||||
tools:text="JFLA 커버곡 Avicii for your self"
|
tools:text="JFLA 커버곡 Avicii for your self"
|
||||||
android:fontFamily="@font/pretendard_medium" />
|
android:fontFamily="@font/medium" />
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
android:id="@+id/tv_player_nickname"
|
android:id="@+id/tv_player_nickname"
|
||||||
@@ -131,7 +131,7 @@
|
|||||||
app:layout_constraintTop_toBottomOf="@+id/tv_player_title"
|
app:layout_constraintTop_toBottomOf="@+id/tv_player_title"
|
||||||
tools:ignore="SmallSp"
|
tools:ignore="SmallSp"
|
||||||
tools:text="JFLA 커버곡 Avicii for your self"
|
tools:text="JFLA 커버곡 Avicii for your self"
|
||||||
android:fontFamily="@font/pretendard_medium" />
|
android:fontFamily="@font/medium" />
|
||||||
|
|
||||||
<ImageView
|
<ImageView
|
||||||
android:id="@+id/iv_player_play_or_pause"
|
android:id="@+id/iv_player_play_or_pause"
|
||||||
|
|||||||
@@ -48,7 +48,7 @@
|
|||||||
android:id="@+id/tv_select_menu_1"
|
android:id="@+id/tv_select_menu_1"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_live_room_menu_preset_1"
|
android:text="@string/screen_live_room_menu_preset_1"
|
||||||
android:textColor="@color/color_3bb9f1"
|
android:textColor="@color/color_3bb9f1"
|
||||||
android:textSize="14.7sp" />
|
android:textSize="14.7sp" />
|
||||||
@@ -77,7 +77,7 @@
|
|||||||
android:id="@+id/tv_select_menu_2"
|
android:id="@+id/tv_select_menu_2"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_live_room_menu_preset_2"
|
android:text="@string/screen_live_room_menu_preset_2"
|
||||||
android:textColor="@color/color_555555"
|
android:textColor="@color/color_555555"
|
||||||
android:textSize="14.7sp" />
|
android:textSize="14.7sp" />
|
||||||
@@ -106,7 +106,7 @@
|
|||||||
android:id="@+id/tv_select_menu_3"
|
android:id="@+id/tv_select_menu_3"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_live_room_menu_preset_3"
|
android:text="@string/screen_live_room_menu_preset_3"
|
||||||
android:textColor="@color/color_555555"
|
android:textColor="@color/color_555555"
|
||||||
android:textSize="14.7sp" />
|
android:textSize="14.7sp" />
|
||||||
@@ -119,7 +119,7 @@
|
|||||||
android:layout_height="200dp"
|
android:layout_height="200dp"
|
||||||
android:layout_marginTop="13.3dp"
|
android:layout_marginTop="13.3dp"
|
||||||
android:background="@drawable/bg_round_corner_6_7_222222"
|
android:background="@drawable/bg_round_corner_6_7_222222"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="top"
|
android:gravity="top"
|
||||||
android:hint="@string/screen_live_room_menu_hint"
|
android:hint="@string/screen_live_room_menu_hint"
|
||||||
android:importantForAutofill="no"
|
android:importantForAutofill="no"
|
||||||
@@ -140,7 +140,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="13.3dp"
|
android:layout_marginTop="13.3dp"
|
||||||
android:background="@drawable/bg_round_corner_10_3bb9f1"
|
android:background="@drawable/bg_round_corner_10_3bb9f1"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:paddingVertical="16dp"
|
android:paddingVertical="16dp"
|
||||||
android:text="@string/screen_menu_config_save"
|
android:text="@string/screen_menu_config_save"
|
||||||
|
|||||||
@@ -43,7 +43,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginHorizontal="6.7dp"
|
android:layout_marginHorizontal="6.7dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_modify_password_current_label"
|
android:text="@string/screen_modify_password_current_label"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="12sp" />
|
android:textSize="12sp" />
|
||||||
@@ -79,7 +79,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginHorizontal="6.7dp"
|
android:layout_marginHorizontal="6.7dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_modify_password_new_label"
|
android:text="@string/screen_modify_password_new_label"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="12sp" />
|
android:textSize="12sp" />
|
||||||
@@ -115,7 +115,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginHorizontal="6.7dp"
|
android:layout_marginHorizontal="6.7dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_modify_password_new_confirm_label"
|
android:text="@string/screen_modify_password_new_confirm_label"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="12sp" />
|
android:textSize="12sp" />
|
||||||
@@ -145,7 +145,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginHorizontal="26.7dp"
|
android:layout_marginHorizontal="26.7dp"
|
||||||
android:layout_marginTop="13.7dp"
|
android:layout_marginTop="13.7dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_modify_password_requirement"
|
android:text="@string/screen_modify_password_requirement"
|
||||||
android:textColor="@color/color_dd4500"
|
android:textColor="@color/color_dd4500"
|
||||||
android:textSize="12sp" />
|
android:textSize="12sp" />
|
||||||
@@ -166,7 +166,7 @@
|
|||||||
android:layout_marginHorizontal="13.3dp"
|
android:layout_marginHorizontal="13.3dp"
|
||||||
android:layout_marginVertical="13.7dp"
|
android:layout_marginVertical="13.7dp"
|
||||||
android:background="@drawable/bg_round_corner_10_3bb9f1"
|
android:background="@drawable/bg_round_corner_10_3bb9f1"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:paddingVertical="16dp"
|
android:paddingVertical="16dp"
|
||||||
android:text="@string/screen_modify_password_submit"
|
android:text="@string/screen_modify_password_submit"
|
||||||
|
|||||||
@@ -22,7 +22,7 @@
|
|||||||
<TextView
|
<TextView
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:text="@string/screen_new_characters_all_total_label"
|
android:text="@string/screen_new_characters_all_total_label"
|
||||||
android:textColor="@color/color_e2e2e2"
|
android:textColor="@color/color_e2e2e2"
|
||||||
@@ -33,7 +33,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginStart="8dp"
|
android:layout_marginStart="8dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:text="@string/common_zero"
|
android:text="@string/common_zero"
|
||||||
android:textColor="@color/color_ff5c49"
|
android:textColor="@color/color_ff5c49"
|
||||||
@@ -43,7 +43,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginStart="2dp"
|
android:layout_marginStart="2dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:text="@string/screen_new_characters_all_total_unit"
|
android:text="@string/screen_new_characters_all_total_unit"
|
||||||
android:textColor="@color/color_e2e2e2"
|
android:textColor="@color/color_e2e2e2"
|
||||||
|
|||||||
@@ -24,7 +24,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginHorizontal="20dp"
|
android:layout_marginHorizontal="20dp"
|
||||||
android:layout_marginTop="40dp"
|
android:layout_marginTop="40dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_nickname_update_notice_primary"
|
android:text="@string/screen_nickname_update_notice_primary"
|
||||||
android:textColor="@color/color_eeeeee" />
|
android:textColor="@color/color_eeeeee" />
|
||||||
|
|
||||||
@@ -32,7 +32,7 @@
|
|||||||
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:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_nickname_update_notice_secondary"
|
android:text="@string/screen_nickname_update_notice_secondary"
|
||||||
android:textColor="@color/color_dd4500" />
|
android:textColor="@color/color_dd4500" />
|
||||||
|
|
||||||
@@ -47,7 +47,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginHorizontal="6.7dp"
|
android:layout_marginHorizontal="6.7dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_nickname_update_label"
|
android:text="@string/screen_nickname_update_label"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="12sp" />
|
android:textSize="12sp" />
|
||||||
@@ -57,7 +57,7 @@
|
|||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:background="@drawable/edittext_underline"
|
android:background="@drawable/edittext_underline"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:hint="@string/screen_nickname_update_hint"
|
android:hint="@string/screen_nickname_update_hint"
|
||||||
android:importantForAutofill="no"
|
android:importantForAutofill="no"
|
||||||
android:inputType="textWebEditText"
|
android:inputType="textWebEditText"
|
||||||
@@ -78,7 +78,7 @@
|
|||||||
android:layout_marginHorizontal="20dp"
|
android:layout_marginHorizontal="20dp"
|
||||||
android:layout_marginTop="21.3dp"
|
android:layout_marginTop="21.3dp"
|
||||||
android:background="@drawable/bg_round_corner_8_transparent_3bb9f1"
|
android:background="@drawable/bg_round_corner_8_transparent_3bb9f1"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:paddingVertical="13.3dp"
|
android:paddingVertical="13.3dp"
|
||||||
android:text="@string/screen_nickname_update_check"
|
android:text="@string/screen_nickname_update_check"
|
||||||
@@ -100,7 +100,7 @@
|
|||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:background="@drawable/bg_round_corner_10_3bb9f1"
|
android:background="@drawable/bg_round_corner_10_3bb9f1"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:paddingVertical="16dp"
|
android:paddingVertical="16dp"
|
||||||
android:text="@string/screen_nickname_update_submit"
|
android:text="@string/screen_nickname_update_submit"
|
||||||
|
|||||||
@@ -23,7 +23,7 @@
|
|||||||
android:id="@+id/tv_title"
|
android:id="@+id/tv_title"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="14.7sp"
|
android:textSize="14.7sp"
|
||||||
tools:text="보이스온 App 오픈 관련 공지사항입니다." />
|
tools:text="보이스온 App 오픈 관련 공지사항입니다." />
|
||||||
@@ -33,7 +33,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="6.7dp"
|
android:layout_marginTop="6.7dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:textColor="@color/color_525252"
|
android:textColor="@color/color_525252"
|
||||||
android:textSize="12sp"
|
android:textSize="12sp"
|
||||||
tools:text="2021.07.01" />
|
tools:text="2021.07.01" />
|
||||||
|
|||||||
@@ -29,7 +29,7 @@
|
|||||||
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:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/notification_settings_live"
|
android:text="@string/notification_settings_live"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="14.7sp" />
|
android:textSize="14.7sp" />
|
||||||
@@ -61,7 +61,7 @@
|
|||||||
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:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/notification_settings_upload"
|
android:text="@string/notification_settings_upload"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="14.7sp" />
|
android:textSize="14.7sp" />
|
||||||
@@ -93,7 +93,7 @@
|
|||||||
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:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/notification_settings_message"
|
android:text="@string/notification_settings_message"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="14.7sp" />
|
android:textSize="14.7sp" />
|
||||||
|
|||||||
@@ -90,7 +90,7 @@
|
|||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="40dp"
|
android:layout_marginTop="40dp"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:textColor="@color/white"
|
android:textColor="@color/white"
|
||||||
android:textSize="26sp"
|
android:textSize="26sp"
|
||||||
@@ -109,7 +109,7 @@
|
|||||||
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_4_263238_ffffff"
|
android:background="@drawable/bg_round_corner_4_263238_ffffff"
|
||||||
android:fontFamily="@font/pretendard_regular"
|
android:fontFamily="@font/regular"
|
||||||
android:paddingHorizontal="7dp"
|
android:paddingHorizontal="7dp"
|
||||||
android:paddingVertical="3dp"
|
android:paddingVertical="3dp"
|
||||||
android:textColor="#B0BEC5"
|
android:textColor="#B0BEC5"
|
||||||
@@ -122,7 +122,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginStart="4dp"
|
android:layout_marginStart="4dp"
|
||||||
android:background="@drawable/bg_round_corner_4_263238_3bb9f1"
|
android:background="@drawable/bg_round_corner_4_263238_3bb9f1"
|
||||||
android:fontFamily="@font/pretendard_regular"
|
android:fontFamily="@font/regular"
|
||||||
android:paddingHorizontal="7dp"
|
android:paddingHorizontal="7dp"
|
||||||
android:paddingVertical="3dp"
|
android:paddingVertical="3dp"
|
||||||
android:textColor="#3bb9f1"
|
android:textColor="#3bb9f1"
|
||||||
@@ -135,7 +135,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginStart="4dp"
|
android:layout_marginStart="4dp"
|
||||||
android:background="@drawable/bg_round_corner_4_263238_ff5c49"
|
android:background="@drawable/bg_round_corner_4_263238_ff5c49"
|
||||||
android:fontFamily="@font/pretendard_regular"
|
android:fontFamily="@font/regular"
|
||||||
android:paddingHorizontal="7dp"
|
android:paddingHorizontal="7dp"
|
||||||
android:paddingVertical="3dp"
|
android:paddingVertical="3dp"
|
||||||
android:text="@string/screen_original_work_age_badge"
|
android:text="@string/screen_original_work_age_badge"
|
||||||
@@ -150,7 +150,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="14dp"
|
android:layout_marginTop="14dp"
|
||||||
android:ellipsize="end"
|
android:ellipsize="end"
|
||||||
android:fontFamily="@font/pretendard_regular"
|
android:fontFamily="@font/regular"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:textColor="@color/color_3bb9f1"
|
android:textColor="@color/color_3bb9f1"
|
||||||
android:textSize="14sp"
|
android:textSize="14sp"
|
||||||
|
|||||||
@@ -35,7 +35,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:drawablePadding="6.7dp"
|
android:drawablePadding="6.7dp"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="18.3sp"
|
android:textSize="18.3sp"
|
||||||
@@ -47,7 +47,7 @@
|
|||||||
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"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:text="@string/screen_point_status_notice"
|
android:text="@string/screen_point_status_notice"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
|
|||||||
@@ -68,7 +68,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginHorizontal="6.7dp"
|
android:layout_marginHorizontal="6.7dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_profile_update_email_label"
|
android:text="@string/screen_profile_update_email_label"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="12sp" />
|
android:textSize="12sp" />
|
||||||
@@ -79,7 +79,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginHorizontal="6.7dp"
|
android:layout_marginHorizontal="6.7dp"
|
||||||
android:layout_marginTop="6.7dp"
|
android:layout_marginTop="6.7dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:textColor="@color/color_777777"
|
android:textColor="@color/color_777777"
|
||||||
android:textSize="13.3sp"
|
android:textSize="13.3sp"
|
||||||
tools:text="tkdekatk121212@gmail.com" />
|
tools:text="tkdekatk121212@gmail.com" />
|
||||||
@@ -100,7 +100,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginHorizontal="6.7dp"
|
android:layout_marginHorizontal="6.7dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_profile_update_password_label"
|
android:text="@string/screen_profile_update_password_label"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="12sp" />
|
android:textSize="12sp" />
|
||||||
@@ -116,7 +116,7 @@
|
|||||||
android:layout_centerVertical="true"
|
android:layout_centerVertical="true"
|
||||||
android:layout_marginStart="6.7dp"
|
android:layout_marginStart="6.7dp"
|
||||||
android:layout_toStartOf="@+id/tv_modify_password"
|
android:layout_toStartOf="@+id/tv_modify_password"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center_vertical"
|
android:gravity="center_vertical"
|
||||||
android:text="@string/screen_profile_update_password_mask"
|
android:text="@string/screen_profile_update_password_mask"
|
||||||
android:textColor="@color/color_777777"
|
android:textColor="@color/color_777777"
|
||||||
@@ -136,7 +136,7 @@
|
|||||||
android:layout_alignParentEnd="true"
|
android:layout_alignParentEnd="true"
|
||||||
android:layout_marginStart="13.3dp"
|
android:layout_marginStart="13.3dp"
|
||||||
android:background="@drawable/bg_round_corner_8_3bb9f1"
|
android:background="@drawable/bg_round_corner_8_3bb9f1"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:paddingHorizontal="22.7dp"
|
android:paddingHorizontal="22.7dp"
|
||||||
android:paddingVertical="13.3dp"
|
android:paddingVertical="13.3dp"
|
||||||
android:text="@string/screen_profile_update_change_password"
|
android:text="@string/screen_profile_update_change_password"
|
||||||
@@ -167,7 +167,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginHorizontal="6.7dp"
|
android:layout_marginHorizontal="6.7dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_profile_update_nickname_label"
|
android:text="@string/screen_profile_update_nickname_label"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="12sp" />
|
android:textSize="12sp" />
|
||||||
@@ -184,7 +184,7 @@
|
|||||||
android:layout_centerVertical="true"
|
android:layout_centerVertical="true"
|
||||||
android:layout_marginStart="6.7dp"
|
android:layout_marginStart="6.7dp"
|
||||||
android:layout_toStartOf="@+id/tv_change_nickname"
|
android:layout_toStartOf="@+id/tv_change_nickname"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center_vertical"
|
android:gravity="center_vertical"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="13.3sp"
|
android:textSize="13.3sp"
|
||||||
@@ -204,7 +204,7 @@
|
|||||||
android:layout_alignParentEnd="true"
|
android:layout_alignParentEnd="true"
|
||||||
android:layout_marginStart="13.3dp"
|
android:layout_marginStart="13.3dp"
|
||||||
android:background="@drawable/bg_round_corner_8_3bb9f1"
|
android:background="@drawable/bg_round_corner_8_3bb9f1"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:paddingHorizontal="22.7dp"
|
android:paddingHorizontal="22.7dp"
|
||||||
android:paddingVertical="13.3dp"
|
android:paddingVertical="13.3dp"
|
||||||
android:text="@string/screen_profile_update_change_nickname"
|
android:text="@string/screen_profile_update_change_nickname"
|
||||||
@@ -223,7 +223,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginHorizontal="6.7dp"
|
android:layout_marginHorizontal="6.7dp"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_profile_update_gender_label"
|
android:text="@string/screen_profile_update_gender_label"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="12sp" />
|
android:textSize="12sp" />
|
||||||
@@ -242,7 +242,7 @@
|
|||||||
android:layout_weight="1"
|
android:layout_weight="1"
|
||||||
android:button="@null"
|
android:button="@null"
|
||||||
android:drawablePadding="13.3dp"
|
android:drawablePadding="13.3dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_profile_update_gender_female"
|
android:text="@string/screen_profile_update_gender_female"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="13.3sp"
|
android:textSize="13.3sp"
|
||||||
@@ -255,7 +255,7 @@
|
|||||||
android:layout_weight="1"
|
android:layout_weight="1"
|
||||||
android:button="@null"
|
android:button="@null"
|
||||||
android:drawablePadding="13.3dp"
|
android:drawablePadding="13.3dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_profile_update_gender_male"
|
android:text="@string/screen_profile_update_gender_male"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="13.3sp"
|
android:textSize="13.3sp"
|
||||||
@@ -268,7 +268,7 @@
|
|||||||
android:layout_weight="1"
|
android:layout_weight="1"
|
||||||
android:button="@null"
|
android:button="@null"
|
||||||
android:drawablePadding="13.3dp"
|
android:drawablePadding="13.3dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_profile_update_gender_none"
|
android:text="@string/screen_profile_update_gender_none"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="13.3sp"
|
android:textSize="13.3sp"
|
||||||
@@ -300,7 +300,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginHorizontal="6.7dp"
|
android:layout_marginHorizontal="6.7dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_profile_update_instagram_label"
|
android:text="@string/screen_profile_update_instagram_label"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="12sp" />
|
android:textSize="12sp" />
|
||||||
@@ -310,7 +310,7 @@
|
|||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:background="@drawable/edittext_underline"
|
android:background="@drawable/edittext_underline"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:hint="@string/screen_profile_update_instagram_hint"
|
android:hint="@string/screen_profile_update_instagram_hint"
|
||||||
android:importantForAutofill="no"
|
android:importantForAutofill="no"
|
||||||
android:inputType="textWebEditText"
|
android:inputType="textWebEditText"
|
||||||
@@ -333,7 +333,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginHorizontal="6.7dp"
|
android:layout_marginHorizontal="6.7dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_profile_update_youtube_label"
|
android:text="@string/screen_profile_update_youtube_label"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="12sp" />
|
android:textSize="12sp" />
|
||||||
@@ -343,7 +343,7 @@
|
|||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:background="@drawable/edittext_underline"
|
android:background="@drawable/edittext_underline"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:hint="@string/screen_profile_update_youtube_hint"
|
android:hint="@string/screen_profile_update_youtube_hint"
|
||||||
android:importantForAutofill="no"
|
android:importantForAutofill="no"
|
||||||
android:inputType="textWebEditText"
|
android:inputType="textWebEditText"
|
||||||
@@ -366,7 +366,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginHorizontal="6.7dp"
|
android:layout_marginHorizontal="6.7dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_profile_update_website_label"
|
android:text="@string/screen_profile_update_website_label"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="12sp" />
|
android:textSize="12sp" />
|
||||||
@@ -376,7 +376,7 @@
|
|||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:background="@drawable/edittext_underline"
|
android:background="@drawable/edittext_underline"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:hint="@string/screen_profile_update_website_hint"
|
android:hint="@string/screen_profile_update_website_hint"
|
||||||
android:importantForAutofill="no"
|
android:importantForAutofill="no"
|
||||||
android:inputType="textWebEditText"
|
android:inputType="textWebEditText"
|
||||||
@@ -399,7 +399,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginHorizontal="6.7dp"
|
android:layout_marginHorizontal="6.7dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_profile_update_blog_label"
|
android:text="@string/screen_profile_update_blog_label"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="12sp" />
|
android:textSize="12sp" />
|
||||||
@@ -409,7 +409,7 @@
|
|||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:background="@drawable/edittext_underline"
|
android:background="@drawable/edittext_underline"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:hint="@string/screen_profile_update_blog_hint"
|
android:hint="@string/screen_profile_update_blog_hint"
|
||||||
android:importantForAutofill="no"
|
android:importantForAutofill="no"
|
||||||
android:inputType="textWebEditText"
|
android:inputType="textWebEditText"
|
||||||
@@ -438,7 +438,7 @@
|
|||||||
<TextView
|
<TextView
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_profile_update_interest_title"
|
android:text="@string/screen_profile_update_interest_title"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="16.7sp" />
|
android:textSize="16.7sp" />
|
||||||
@@ -449,7 +449,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="13.3dp"
|
android:layout_marginTop="13.3dp"
|
||||||
android:background="@drawable/bg_round_corner_24_3_333bb9f1_3bb9f1"
|
android:background="@drawable/bg_round_corner_24_3_333bb9f1_3bb9f1"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:paddingVertical="13.7dp"
|
android:paddingVertical="13.7dp"
|
||||||
android:text="@string/screen_profile_update_interest_select"
|
android:text="@string/screen_profile_update_interest_select"
|
||||||
@@ -483,7 +483,7 @@
|
|||||||
<TextView
|
<TextView
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:lineSpacingExtra="5sp"
|
android:lineSpacingExtra="5sp"
|
||||||
android:text="@string/screen_profile_update_introduce_label"
|
android:text="@string/screen_profile_update_introduce_label"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
@@ -495,7 +495,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="13.3dp"
|
android:layout_marginTop="13.3dp"
|
||||||
android:background="@drawable/bg_round_corner_6_7_222222"
|
android:background="@drawable/bg_round_corner_6_7_222222"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="top"
|
android:gravity="top"
|
||||||
android:hint="@string/screen_profile_update_introduce_hint"
|
android:hint="@string/screen_profile_update_introduce_hint"
|
||||||
android:importantForAutofill="no"
|
android:importantForAutofill="no"
|
||||||
@@ -527,7 +527,7 @@
|
|||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:background="@drawable/bg_round_corner_10_3bb9f1"
|
android:background="@drawable/bg_round_corner_10_3bb9f1"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:paddingVertical="16dp"
|
android:paddingVertical="16dp"
|
||||||
android:text="@string/screen_profile_update_save"
|
android:text="@string/screen_profile_update_save"
|
||||||
|
|||||||
@@ -23,7 +23,7 @@
|
|||||||
android:layout_centerVertical="true"
|
android:layout_centerVertical="true"
|
||||||
android:drawablePadding="6.7dp"
|
android:drawablePadding="6.7dp"
|
||||||
android:ellipsize="end"
|
android:ellipsize="end"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:minHeight="48dp"
|
android:minHeight="48dp"
|
||||||
android:text="@string/screen_roulette_config_title"
|
android:text="@string/screen_roulette_config_title"
|
||||||
@@ -76,7 +76,7 @@
|
|||||||
android:id="@+id/tv_select_roulette_1"
|
android:id="@+id/tv_select_roulette_1"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_roulette_config_preset_1"
|
android:text="@string/screen_roulette_config_preset_1"
|
||||||
android:textColor="@color/color_3bb9f1"
|
android:textColor="@color/color_3bb9f1"
|
||||||
android:textSize="14.7sp" />
|
android:textSize="14.7sp" />
|
||||||
@@ -105,7 +105,7 @@
|
|||||||
android:id="@+id/tv_select_roulette_2"
|
android:id="@+id/tv_select_roulette_2"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_roulette_config_preset_2"
|
android:text="@string/screen_roulette_config_preset_2"
|
||||||
android:textColor="@color/color_555555"
|
android:textColor="@color/color_555555"
|
||||||
android:textSize="14.7sp" />
|
android:textSize="14.7sp" />
|
||||||
@@ -134,7 +134,7 @@
|
|||||||
android:id="@+id/tv_select_roulette_3"
|
android:id="@+id/tv_select_roulette_3"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_roulette_config_preset_3"
|
android:text="@string/screen_roulette_config_preset_3"
|
||||||
android:textColor="@color/color_555555"
|
android:textColor="@color/color_555555"
|
||||||
android:textSize="14.7sp" />
|
android:textSize="14.7sp" />
|
||||||
@@ -153,7 +153,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_alignParentStart="true"
|
android:layout_alignParentStart="true"
|
||||||
android:layout_centerVertical="true"
|
android:layout_centerVertical="true"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_roulette_config_activate_question"
|
android:text="@string/screen_roulette_config_activate_question"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="16sp" />
|
android:textSize="16sp" />
|
||||||
@@ -172,7 +172,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="26.7dp"
|
android:layout_marginTop="26.7dp"
|
||||||
android:layout_marginBottom="13.3dp"
|
android:layout_marginBottom="13.3dp"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_roulette_config_price_label"
|
android:text="@string/screen_roulette_config_price_label"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="16sp" />
|
android:textSize="16sp" />
|
||||||
@@ -190,7 +190,7 @@
|
|||||||
android:layout_marginEnd="8dp"
|
android:layout_marginEnd="8dp"
|
||||||
android:layout_toStartOf="@+id/tv_price_unit"
|
android:layout_toStartOf="@+id/tv_price_unit"
|
||||||
android:background="@drawable/bg_round_corner_6_7_222222"
|
android:background="@drawable/bg_round_corner_6_7_222222"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:hint="@string/screen_roulette_config_price_hint"
|
android:hint="@string/screen_roulette_config_price_hint"
|
||||||
android:importantForAutofill="no"
|
android:importantForAutofill="no"
|
||||||
android:inputType="numberSigned"
|
android:inputType="numberSigned"
|
||||||
@@ -209,7 +209,7 @@
|
|||||||
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/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_live_room_create_price_unit"
|
android:text="@string/screen_live_room_create_price_unit"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="16.7sp" />
|
android:textSize="16.7sp" />
|
||||||
@@ -219,7 +219,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="26.7dp"
|
android:layout_marginTop="26.7dp"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_roulette_config_option_label"
|
android:text="@string/screen_roulette_config_option_label"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="16sp" />
|
android:textSize="16sp" />
|
||||||
@@ -234,7 +234,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_alignParentStart="true"
|
android:layout_alignParentStart="true"
|
||||||
android:layout_centerVertical="true"
|
android:layout_centerVertical="true"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_roulette_config_option_limit"
|
android:text="@string/screen_roulette_config_option_limit"
|
||||||
android:textColor="@color/color_ff5c49"
|
android:textColor="@color/color_ff5c49"
|
||||||
android:textSize="13.3sp" />
|
android:textSize="13.3sp" />
|
||||||
@@ -262,7 +262,7 @@
|
|||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="14.7sp"
|
android:textSize="14.7sp"
|
||||||
tools:ignore="RelativeOverlap"
|
tools:ignore="RelativeOverlap"
|
||||||
android:fontFamily="@font/pretendard_medium" />
|
android:fontFamily="@font/medium" />
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
android:id="@+id/tv_total_percentage"
|
android:id="@+id/tv_total_percentage"
|
||||||
@@ -270,7 +270,7 @@
|
|||||||
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/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="14.7sp"
|
android:textSize="14.7sp"
|
||||||
@@ -302,7 +302,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_weight="1"
|
android:layout_weight="1"
|
||||||
android:background="@drawable/bg_round_corner_10_transparent_3bb9f1"
|
android:background="@drawable/bg_round_corner_10_transparent_3bb9f1"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:paddingVertical="16dp"
|
android:paddingVertical="16dp"
|
||||||
android:text="@string/screen_roulette_config_preview"
|
android:text="@string/screen_roulette_config_preview"
|
||||||
@@ -316,7 +316,7 @@
|
|||||||
android:layout_marginStart="13.3dp"
|
android:layout_marginStart="13.3dp"
|
||||||
android:layout_weight="1"
|
android:layout_weight="1"
|
||||||
android:background="@drawable/bg_round_corner_10_3bb9f1"
|
android:background="@drawable/bg_round_corner_10_3bb9f1"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:paddingVertical="16dp"
|
android:paddingVertical="16dp"
|
||||||
android:text="@string/screen_roulette_config_save"
|
android:text="@string/screen_roulette_config_save"
|
||||||
|
|||||||
@@ -41,7 +41,7 @@
|
|||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"
|
||||||
android:layout_gravity="center_vertical"
|
android:layout_gravity="center_vertical"
|
||||||
android:background="@null"
|
android:background="@null"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center_vertical"
|
android:gravity="center_vertical"
|
||||||
android:hint="@string/screen_search_hint"
|
android:hint="@string/screen_search_hint"
|
||||||
android:importantForAutofill="no"
|
android:importantForAutofill="no"
|
||||||
@@ -91,7 +91,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginHorizontal="13.3dp"
|
android:layout_marginHorizontal="13.3dp"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_search_creator_title"
|
android:text="@string/screen_search_creator_title"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="16sp" />
|
android:textSize="16sp" />
|
||||||
@@ -110,7 +110,7 @@
|
|||||||
android:layout_marginHorizontal="13.3dp"
|
android:layout_marginHorizontal="13.3dp"
|
||||||
android:layout_marginBottom="30dp"
|
android:layout_marginBottom="30dp"
|
||||||
android:background="@color/color_cc333333"
|
android:background="@color/color_cc333333"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:paddingVertical="10dp"
|
android:paddingVertical="10dp"
|
||||||
android:text="@string/screen_search_more"
|
android:text="@string/screen_search_more"
|
||||||
@@ -122,7 +122,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginHorizontal="13.3dp"
|
android:layout_marginHorizontal="13.3dp"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_search_content_title"
|
android:text="@string/screen_search_content_title"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="16sp" />
|
android:textSize="16sp" />
|
||||||
@@ -141,7 +141,7 @@
|
|||||||
android:layout_marginHorizontal="13.3dp"
|
android:layout_marginHorizontal="13.3dp"
|
||||||
android:layout_marginBottom="30dp"
|
android:layout_marginBottom="30dp"
|
||||||
android:background="@color/color_cc333333"
|
android:background="@color/color_cc333333"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:paddingVertical="10dp"
|
android:paddingVertical="10dp"
|
||||||
android:text="@string/screen_search_more"
|
android:text="@string/screen_search_more"
|
||||||
@@ -153,7 +153,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginHorizontal="13.3dp"
|
android:layout_marginHorizontal="13.3dp"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_search_series_title"
|
android:text="@string/screen_search_series_title"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="16sp" />
|
android:textSize="16sp" />
|
||||||
@@ -172,7 +172,7 @@
|
|||||||
android:layout_marginHorizontal="13.3dp"
|
android:layout_marginHorizontal="13.3dp"
|
||||||
android:layout_marginBottom="13.3dp"
|
android:layout_marginBottom="13.3dp"
|
||||||
android:background="@color/color_cc333333"
|
android:background="@color/color_cc333333"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:paddingVertical="10dp"
|
android:paddingVertical="10dp"
|
||||||
android:text="@string/screen_search_more"
|
android:text="@string/screen_search_more"
|
||||||
@@ -210,7 +210,7 @@
|
|||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginVertical="40dp"
|
android:layout_marginVertical="40dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:text="@string/screen_search_no_result"
|
android:text="@string/screen_search_no_result"
|
||||||
android:textColor="@color/white"
|
android:textColor="@color/white"
|
||||||
|
|||||||
@@ -17,7 +17,7 @@
|
|||||||
android:layout_marginHorizontal="13.3dp"
|
android:layout_marginHorizontal="13.3dp"
|
||||||
android:layout_marginTop="20dp"
|
android:layout_marginTop="20dp"
|
||||||
android:background="@drawable/bg_round_corner_10_232323"
|
android:background="@drawable/bg_round_corner_10_232323"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center_vertical"
|
android:gravity="center_vertical"
|
||||||
android:hint="@string/screen_message_recipient_search_hint"
|
android:hint="@string/screen_message_recipient_search_hint"
|
||||||
android:importantForAutofill="no"
|
android:importantForAutofill="no"
|
||||||
|
|||||||
@@ -27,7 +27,7 @@
|
|||||||
android:id="@+id/tv_sort_newest"
|
android:id="@+id/tv_sort_newest"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:text="@string/screen_series_content_sort_newest"
|
android:text="@string/screen_series_content_sort_newest"
|
||||||
android:textColor="@color/color_88e2e2e2"
|
android:textColor="@color/color_88e2e2e2"
|
||||||
@@ -38,7 +38,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginStart="13.3dp"
|
android:layout_marginStart="13.3dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:text="@string/screen_series_content_sort_oldest"
|
android:text="@string/screen_series_content_sort_oldest"
|
||||||
android:textColor="@color/color_88e2e2e2"
|
android:textColor="@color/color_88e2e2e2"
|
||||||
|
|||||||
@@ -75,7 +75,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginHorizontal="13.3dp"
|
android:layout_marginHorizontal="13.3dp"
|
||||||
android:layout_marginTop="27dp"
|
android:layout_marginTop="27dp"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="18.3sp"
|
android:textSize="18.3sp"
|
||||||
tools:text="The 야한 남친" />
|
tools:text="The 야한 남친" />
|
||||||
@@ -92,7 +92,7 @@
|
|||||||
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_2_6_28312b"
|
android:background="@drawable/bg_round_corner_2_6_28312b"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:paddingHorizontal="5.3dp"
|
android:paddingHorizontal="5.3dp"
|
||||||
android:paddingVertical="3.3dp"
|
android:paddingVertical="3.3dp"
|
||||||
android:textColor="@color/color_3bac6a"
|
android:textColor="@color/color_3bac6a"
|
||||||
@@ -105,7 +105,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginStart="5.3dp"
|
android:layout_marginStart="5.3dp"
|
||||||
android:background="@drawable/bg_round_corner_2_6_222222"
|
android:background="@drawable/bg_round_corner_2_6_222222"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:paddingHorizontal="5.3dp"
|
android:paddingHorizontal="5.3dp"
|
||||||
android:paddingVertical="3.3dp"
|
android:paddingVertical="3.3dp"
|
||||||
android:text="@string/screen_series_detail_age_all"
|
android:text="@string/screen_series_detail_age_all"
|
||||||
@@ -118,7 +118,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginStart="5.3dp"
|
android:layout_marginStart="5.3dp"
|
||||||
android:background="@drawable/bg_round_corner_2_6_312827"
|
android:background="@drawable/bg_round_corner_2_6_312827"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:paddingHorizontal="5.3dp"
|
android:paddingHorizontal="5.3dp"
|
||||||
android:paddingVertical="3.3dp"
|
android:paddingVertical="3.3dp"
|
||||||
android:text="@string/screen_series_detail_age_19_badge"
|
android:text="@string/screen_series_detail_age_19_badge"
|
||||||
@@ -131,7 +131,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_gravity="center"
|
android:layout_gravity="center"
|
||||||
android:layout_marginStart="5.3dp"
|
android:layout_marginStart="5.3dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:textColor="@color/color_909090"
|
android:textColor="@color/color_909090"
|
||||||
android:textSize="12sp"
|
android:textSize="12sp"
|
||||||
tools:text="매주 토 연재" />
|
tools:text="매주 토 연재" />
|
||||||
@@ -178,7 +178,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginHorizontal="5.3dp"
|
android:layout_marginHorizontal="5.3dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:textColor="@color/color_909090"
|
android:textColor="@color/color_909090"
|
||||||
android:textSize="13.3sp"
|
android:textSize="13.3sp"
|
||||||
tools:text="청령" />
|
tools:text="청령" />
|
||||||
|
|||||||
@@ -30,7 +30,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="16dp"
|
android:layout_marginTop="16dp"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_service_center_logo_label"
|
android:text="@string/screen_service_center_logo_label"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="20sp" />
|
android:textSize="20sp" />
|
||||||
@@ -50,7 +50,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:drawablePadding="13.3dp"
|
android:drawablePadding="13.3dp"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_service_center_kakao"
|
android:text="@string/screen_service_center_kakao"
|
||||||
android:textColor="@color/black"
|
android:textColor="@color/black"
|
||||||
android:textSize="13.3sp"
|
android:textSize="13.3sp"
|
||||||
@@ -67,7 +67,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:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_service_center_faq_title"
|
android:text="@string/screen_service_center_faq_title"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="18.3sp" />
|
android:textSize="18.3sp" />
|
||||||
|
|||||||
@@ -39,7 +39,7 @@
|
|||||||
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:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_settings_notification"
|
android:text="@string/screen_settings_notification"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="14.7sp" />
|
android:textSize="14.7sp" />
|
||||||
@@ -73,7 +73,7 @@
|
|||||||
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:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_settings_content"
|
android:text="@string/screen_settings_content"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="14.7sp" />
|
android:textSize="14.7sp" />
|
||||||
@@ -106,7 +106,7 @@
|
|||||||
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:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_settings_language"
|
android:text="@string/screen_settings_language"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="14.7sp" />
|
android:textSize="14.7sp" />
|
||||||
@@ -141,7 +141,7 @@
|
|||||||
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:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_settings_terms"
|
android:text="@string/screen_settings_terms"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="14.7sp" />
|
android:textSize="14.7sp" />
|
||||||
@@ -174,7 +174,7 @@
|
|||||||
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:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_settings_privacy"
|
android:text="@string/screen_settings_privacy"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="14.7sp" />
|
android:textSize="14.7sp" />
|
||||||
@@ -207,7 +207,7 @@
|
|||||||
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:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_settings_oss_license"
|
android:text="@string/screen_settings_oss_license"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="14.7sp" />
|
android:textSize="14.7sp" />
|
||||||
@@ -236,7 +236,7 @@
|
|||||||
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:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_settings_app_version"
|
android:text="@string/screen_settings_app_version"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="14.7sp" />
|
android:textSize="14.7sp" />
|
||||||
@@ -247,7 +247,7 @@
|
|||||||
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/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="13.3sp"
|
android:textSize="13.3sp"
|
||||||
tools:ignore="RelativeOverlap"
|
tools:ignore="RelativeOverlap"
|
||||||
@@ -260,7 +260,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginHorizontal="13.3dp"
|
android:layout_marginHorizontal="13.3dp"
|
||||||
android:layout_marginTop="16.7dp"
|
android:layout_marginTop="16.7dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/company_info"
|
android:text="@string/company_info"
|
||||||
android:textColor="@color/color_777777"
|
android:textColor="@color/color_777777"
|
||||||
android:textSize="11sp" />
|
android:textSize="11sp" />
|
||||||
@@ -272,7 +272,7 @@
|
|||||||
android:layout_marginHorizontal="13.3dp"
|
android:layout_marginHorizontal="13.3dp"
|
||||||
android:layout_marginTop="46.7dp"
|
android:layout_marginTop="46.7dp"
|
||||||
android:background="@drawable/bg_round_corner_6_7_222222"
|
android:background="@drawable/bg_round_corner_6_7_222222"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:paddingVertical="19.3dp"
|
android:paddingVertical="19.3dp"
|
||||||
android:text="@string/screen_settings_logout"
|
android:text="@string/screen_settings_logout"
|
||||||
@@ -285,7 +285,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_gravity="center"
|
android:layout_gravity="center"
|
||||||
android:layout_marginTop="26.7dp"
|
android:layout_marginTop="26.7dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_settings_logout_all"
|
android:text="@string/screen_settings_logout_all"
|
||||||
android:textColor="@color/color_777777"
|
android:textColor="@color/color_777777"
|
||||||
android:textSize="14.7sp" />
|
android:textSize="14.7sp" />
|
||||||
@@ -296,7 +296,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_gravity="center"
|
android:layout_gravity="center"
|
||||||
android:layout_marginTop="26.7dp"
|
android:layout_marginTop="26.7dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_settings_sign_out"
|
android:text="@string/screen_settings_sign_out"
|
||||||
android:textColor="@color/color_777777"
|
android:textColor="@color/color_777777"
|
||||||
android:textSize="14.7sp" />
|
android:textSize="14.7sp" />
|
||||||
|
|||||||
@@ -28,7 +28,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginHorizontal="13.3dp"
|
android:layout_marginHorizontal="13.3dp"
|
||||||
android:layout_marginTop="13.3dp"
|
android:layout_marginTop="13.3dp"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_sign_out_question"
|
android:text="@string/screen_sign_out_question"
|
||||||
android:textColor="@color/color_3bb9f1"
|
android:textColor="@color/color_3bb9f1"
|
||||||
android:textSize="20sp" />
|
android:textSize="20sp" />
|
||||||
@@ -38,7 +38,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginHorizontal="13.3dp"
|
android:layout_marginHorizontal="13.3dp"
|
||||||
android:layout_marginTop="6.7dp"
|
android:layout_marginTop="6.7dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:letterSpacing="0"
|
android:letterSpacing="0"
|
||||||
android:text="@string/screen_sign_out_description"
|
android:text="@string/screen_sign_out_description"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
@@ -52,7 +52,7 @@
|
|||||||
android:layout_marginTop="13.3dp"
|
android:layout_marginTop="13.3dp"
|
||||||
android:button="@null"
|
android:button="@null"
|
||||||
android:drawablePadding="13.3dp"
|
android:drawablePadding="13.3dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_sign_out_reason_change_nickname"
|
android:text="@string/screen_sign_out_reason_change_nickname"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="13.3sp"
|
android:textSize="13.3sp"
|
||||||
@@ -66,7 +66,7 @@
|
|||||||
android:layout_marginTop="10dp"
|
android:layout_marginTop="10dp"
|
||||||
android:button="@null"
|
android:button="@null"
|
||||||
android:drawablePadding="13.3dp"
|
android:drawablePadding="13.3dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_sign_out_reason_conflict_user"
|
android:text="@string/screen_sign_out_reason_conflict_user"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="13.3sp"
|
android:textSize="13.3sp"
|
||||||
@@ -80,7 +80,7 @@
|
|||||||
android:layout_marginTop="10dp"
|
android:layout_marginTop="10dp"
|
||||||
android:button="@null"
|
android:button="@null"
|
||||||
android:drawablePadding="13.3dp"
|
android:drawablePadding="13.3dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_sign_out_reason_inconvenient"
|
android:text="@string/screen_sign_out_reason_inconvenient"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="13.3sp"
|
android:textSize="13.3sp"
|
||||||
@@ -94,7 +94,7 @@
|
|||||||
android:layout_marginTop="10dp"
|
android:layout_marginTop="10dp"
|
||||||
android:button="@null"
|
android:button="@null"
|
||||||
android:drawablePadding="13.3dp"
|
android:drawablePadding="13.3dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_sign_out_reason_unhappy_service"
|
android:text="@string/screen_sign_out_reason_unhappy_service"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="13.3sp"
|
android:textSize="13.3sp"
|
||||||
@@ -108,7 +108,7 @@
|
|||||||
android:layout_marginTop="10dp"
|
android:layout_marginTop="10dp"
|
||||||
android:button="@null"
|
android:button="@null"
|
||||||
android:drawablePadding="13.3dp"
|
android:drawablePadding="13.3dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_sign_out_reason_other_service"
|
android:text="@string/screen_sign_out_reason_other_service"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="13.3sp"
|
android:textSize="13.3sp"
|
||||||
@@ -122,7 +122,7 @@
|
|||||||
android:layout_marginTop="10dp"
|
android:layout_marginTop="10dp"
|
||||||
android:button="@null"
|
android:button="@null"
|
||||||
android:drawablePadding="13.3dp"
|
android:drawablePadding="13.3dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_sign_out_reason_remove_content"
|
android:text="@string/screen_sign_out_reason_remove_content"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="13.3sp"
|
android:textSize="13.3sp"
|
||||||
@@ -136,7 +136,7 @@
|
|||||||
android:layout_marginTop="10dp"
|
android:layout_marginTop="10dp"
|
||||||
android:button="@null"
|
android:button="@null"
|
||||||
android:drawablePadding="13.3dp"
|
android:drawablePadding="13.3dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_sign_out_reason_low_usage"
|
android:text="@string/screen_sign_out_reason_low_usage"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="13.3sp"
|
android:textSize="13.3sp"
|
||||||
@@ -150,7 +150,7 @@
|
|||||||
android:layout_marginTop="10dp"
|
android:layout_marginTop="10dp"
|
||||||
android:button="@null"
|
android:button="@null"
|
||||||
android:drawablePadding="13.3dp"
|
android:drawablePadding="13.3dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_sign_out_reason_missing_content"
|
android:text="@string/screen_sign_out_reason_missing_content"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="13.3sp"
|
android:textSize="13.3sp"
|
||||||
@@ -164,7 +164,7 @@
|
|||||||
android:layout_marginTop="10dp"
|
android:layout_marginTop="10dp"
|
||||||
android:button="@null"
|
android:button="@null"
|
||||||
android:drawablePadding="13.3dp"
|
android:drawablePadding="13.3dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_sign_out_reason_expensive"
|
android:text="@string/screen_sign_out_reason_expensive"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="13.3sp"
|
android:textSize="13.3sp"
|
||||||
@@ -183,7 +183,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:button="@null"
|
android:button="@null"
|
||||||
android:drawablePadding="13.3dp"
|
android:drawablePadding="13.3dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_sign_out_reason_etc"
|
android:text="@string/screen_sign_out_reason_etc"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="13.3sp"
|
android:textSize="13.3sp"
|
||||||
@@ -201,7 +201,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:background="@null"
|
android:background="@null"
|
||||||
android:button="@null"
|
android:button="@null"
|
||||||
android:fontFamily="@font/pretendard_light"
|
android:fontFamily="@font/light"
|
||||||
android:hint="@string/screen_sign_out_reason_hint"
|
android:hint="@string/screen_sign_out_reason_hint"
|
||||||
android:importantForAutofill="no"
|
android:importantForAutofill="no"
|
||||||
android:inputType="textWebEditText"
|
android:inputType="textWebEditText"
|
||||||
@@ -229,7 +229,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginHorizontal="26.7dp"
|
android:layout_marginHorizontal="26.7dp"
|
||||||
android:layout_marginTop="13.3dp"
|
android:layout_marginTop="13.3dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_sign_out_warning"
|
android:text="@string/screen_sign_out_warning"
|
||||||
android:textColor="@color/color_ff5c49" />
|
android:textColor="@color/color_ff5c49" />
|
||||||
|
|
||||||
@@ -244,7 +244,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginHorizontal="6.7dp"
|
android:layout_marginHorizontal="6.7dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_sign_out_password_label"
|
android:text="@string/screen_sign_out_password_label"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="12sp" />
|
android:textSize="12sp" />
|
||||||
@@ -254,7 +254,7 @@
|
|||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:background="@drawable/edittext_underline"
|
android:background="@drawable/edittext_underline"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:importantForAutofill="no"
|
android:importantForAutofill="no"
|
||||||
android:inputType="textWebPassword"
|
android:inputType="textWebPassword"
|
||||||
android:paddingHorizontal="6.7dp"
|
android:paddingHorizontal="6.7dp"
|
||||||
@@ -273,7 +273,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginHorizontal="26.7dp"
|
android:layout_marginHorizontal="26.7dp"
|
||||||
android:layout_marginTop="8dp"
|
android:layout_marginTop="8dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_sign_out_social_hint"
|
android:text="@string/screen_sign_out_social_hint"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="12sp" />
|
android:textSize="12sp" />
|
||||||
@@ -286,7 +286,7 @@
|
|||||||
android:layout_marginTop="53.3dp"
|
android:layout_marginTop="53.3dp"
|
||||||
android:layout_marginBottom="13.3dp"
|
android:layout_marginBottom="13.3dp"
|
||||||
android:background="@drawable/bg_round_corner_6_7_3bb9f1"
|
android:background="@drawable/bg_round_corner_6_7_3bb9f1"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:paddingVertical="16dp"
|
android:paddingVertical="16dp"
|
||||||
android:text="@string/screen_sign_out_submit"
|
android:text="@string/screen_sign_out_submit"
|
||||||
|
|||||||
@@ -42,7 +42,7 @@
|
|||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:background="@android:color/transparent"
|
android:background="@android:color/transparent"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:hint="@string/hint_email"
|
android:hint="@string/hint_email"
|
||||||
android:importantForAutofill="no"
|
android:importantForAutofill="no"
|
||||||
android:inputType="textEmailAddress"
|
android:inputType="textEmailAddress"
|
||||||
@@ -72,7 +72,7 @@
|
|||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:background="@android:color/transparent"
|
android:background="@android:color/transparent"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:hint="@string/hint_password"
|
android:hint="@string/hint_password"
|
||||||
android:imeOptions="actionDone"
|
android:imeOptions="actionDone"
|
||||||
android:importantForAutofill="no"
|
android:importantForAutofill="no"
|
||||||
@@ -111,7 +111,7 @@
|
|||||||
android:id="@+id/tv_terms_of_service"
|
android:id="@+id/tv_terms_of_service"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/terms_of_service"
|
android:text="@string/terms_of_service"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="12sp" />
|
android:textSize="12sp" />
|
||||||
@@ -120,7 +120,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginStart="6.7dp"
|
android:layout_marginStart="6.7dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/required_label"
|
android:text="@string/required_label"
|
||||||
android:textColor="@color/color_3bb9f1"
|
android:textColor="@color/color_3bb9f1"
|
||||||
android:textSize="12sp" />
|
android:textSize="12sp" />
|
||||||
@@ -155,7 +155,7 @@
|
|||||||
android:id="@+id/tv_privacy_policy"
|
android:id="@+id/tv_privacy_policy"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/privacy_policy"
|
android:text="@string/privacy_policy"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="12sp" />
|
android:textSize="12sp" />
|
||||||
@@ -164,7 +164,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginStart="6.7dp"
|
android:layout_marginStart="6.7dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/required_label"
|
android:text="@string/required_label"
|
||||||
android:textColor="@color/color_3bb9f1"
|
android:textColor="@color/color_3bb9f1"
|
||||||
android:textSize="12sp" />
|
android:textSize="12sp" />
|
||||||
@@ -178,7 +178,7 @@
|
|||||||
android:layout_marginHorizontal="13.3dp"
|
android:layout_marginHorizontal="13.3dp"
|
||||||
android:layout_marginTop="26.7dp"
|
android:layout_marginTop="26.7dp"
|
||||||
android:background="@drawable/bg_round_corner_10_3bb9f1"
|
android:background="@drawable/bg_round_corner_10_3bb9f1"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:paddingVertical="16dp"
|
android:paddingVertical="16dp"
|
||||||
android:text="@string/title_signup"
|
android:text="@string/title_signup"
|
||||||
|
|||||||
@@ -30,7 +30,7 @@
|
|||||||
<TextView
|
<TextView
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_splash_tagline"
|
android:text="@string/screen_splash_tagline"
|
||||||
android:textColor="@color/white"
|
android:textColor="@color/white"
|
||||||
android:textSize="23sp" />
|
android:textSize="23sp" />
|
||||||
@@ -48,7 +48,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="52dp"
|
android:layout_marginTop="52dp"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_splash_brand_name"
|
android:text="@string/screen_splash_brand_name"
|
||||||
android:textColor="@color/white"
|
android:textColor="@color/white"
|
||||||
android:textSize="21sp" />
|
android:textSize="21sp" />
|
||||||
|
|||||||
@@ -34,7 +34,7 @@
|
|||||||
android:id="@+id/tv_nickname"
|
android:id="@+id/tv_nickname"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="18.3sp"
|
android:textSize="18.3sp"
|
||||||
tools:text="이재형 대표님" />
|
tools:text="이재형 대표님" />
|
||||||
@@ -45,7 +45,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="16.7dp"
|
android:layout_marginTop="16.7dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:textColor="@color/color_bbbbbb"
|
android:textColor="@color/color_bbbbbb"
|
||||||
android:textSize="15sp"
|
android:textSize="15sp"
|
||||||
app:layout_constraintEnd_toEndOf="parent"
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
@@ -70,7 +70,7 @@
|
|||||||
android:id="@+id/tv_message"
|
android:id="@+id/tv_message"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="15sp" />
|
android:textSize="15sp" />
|
||||||
</ScrollView>
|
</ScrollView>
|
||||||
@@ -91,7 +91,7 @@
|
|||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"
|
||||||
android:layout_weight="1"
|
android:layout_weight="1"
|
||||||
android:background="@drawable/bg_round_corner_6_7_3bb9f1"
|
android:background="@drawable/bg_round_corner_6_7_3bb9f1"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:text="@string/screen_message_detail_action_reply"
|
android:text="@string/screen_message_detail_action_reply"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
@@ -104,7 +104,7 @@
|
|||||||
android:layout_marginHorizontal="6.7dp"
|
android:layout_marginHorizontal="6.7dp"
|
||||||
android:layout_weight="1"
|
android:layout_weight="1"
|
||||||
android:background="@drawable/bg_round_corner_6_7_13181b"
|
android:background="@drawable/bg_round_corner_6_7_13181b"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:text="@string/screen_message_detail_action_keep"
|
android:text="@string/screen_message_detail_action_keep"
|
||||||
android:textColor="@color/color_3bb9f1"
|
android:textColor="@color/color_3bb9f1"
|
||||||
@@ -116,7 +116,7 @@
|
|||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"
|
||||||
android:layout_weight="1"
|
android:layout_weight="1"
|
||||||
android:background="@drawable/bg_round_corner_6_7_13181b"
|
android:background="@drawable/bg_round_corner_6_7_13181b"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:text="@string/screen_message_detail_action_delete"
|
android:text="@string/screen_message_detail_action_delete"
|
||||||
android:textColor="@color/color_3bb9f1"
|
android:textColor="@color/color_3bb9f1"
|
||||||
|
|||||||
@@ -16,7 +16,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_centerInParent="true"
|
android:layout_centerInParent="true"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_message_write_title_new"
|
android:text="@string/screen_message_write_title_new"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="18.3sp" />
|
android:textSize="18.3sp" />
|
||||||
@@ -28,7 +28,7 @@
|
|||||||
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/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_message_write_cancel"
|
android:text="@string/screen_message_write_cancel"
|
||||||
android:textColor="@color/color_3bb9f1"
|
android:textColor="@color/color_3bb9f1"
|
||||||
android:textSize="16.7sp" />
|
android:textSize="16.7sp" />
|
||||||
@@ -47,7 +47,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_centerVertical="true"
|
android:layout_centerVertical="true"
|
||||||
android:layout_marginStart="13.3dp"
|
android:layout_marginStart="13.3dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_message_write_recipient_label"
|
android:text="@string/screen_message_write_recipient_label"
|
||||||
android:textColor="@color/color_777777"
|
android:textColor="@color/color_777777"
|
||||||
android:textSize="16.7sp" />
|
android:textSize="16.7sp" />
|
||||||
@@ -59,7 +59,7 @@
|
|||||||
android:layout_centerVertical="true"
|
android:layout_centerVertical="true"
|
||||||
android:layout_marginStart="13.3dp"
|
android:layout_marginStart="13.3dp"
|
||||||
android:layout_toEndOf="@+id/tv_recipient_title"
|
android:layout_toEndOf="@+id/tv_recipient_title"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="16.7sp"
|
android:textSize="16.7sp"
|
||||||
tools:ignore="RelativeOverlap"
|
tools:ignore="RelativeOverlap"
|
||||||
@@ -96,7 +96,7 @@
|
|||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:background="@null"
|
android:background="@null"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="top"
|
android:gravity="top"
|
||||||
android:hint="@string/screen_message_write_input_hint"
|
android:hint="@string/screen_message_write_input_hint"
|
||||||
android:importantForAutofill="no"
|
android:importantForAutofill="no"
|
||||||
@@ -118,7 +118,7 @@
|
|||||||
android:layout_marginHorizontal="13.3dp"
|
android:layout_marginHorizontal="13.3dp"
|
||||||
android:layout_marginBottom="13.3dp"
|
android:layout_marginBottom="13.3dp"
|
||||||
android:background="@drawable/bg_round_corner_6_7_3bb9f1"
|
android:background="@drawable/bg_round_corner_6_7_3bb9f1"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:text="@string/screen_message_write_button_send"
|
android:text="@string/screen_message_write_button_send"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
|
|||||||
@@ -16,7 +16,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginStart="13.3dp"
|
android:layout_marginStart="13.3dp"
|
||||||
android:layout_marginTop="26.7dp"
|
android:layout_marginTop="26.7dp"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_user_follower_list_total_label"
|
android:text="@string/screen_user_follower_list_total_label"
|
||||||
android:textColor="@color/white"
|
android:textColor="@color/white"
|
||||||
android:textSize="18.3sp"
|
android:textSize="18.3sp"
|
||||||
@@ -28,7 +28,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginStart="4dp"
|
android:layout_marginStart="4dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:textColor="@color/color_3bb9f1"
|
android:textColor="@color/color_3bb9f1"
|
||||||
android:textSize="18.3sp"
|
android:textSize="18.3sp"
|
||||||
app:layout_constraintStart_toEndOf="@+id/tv_title"
|
app:layout_constraintStart_toEndOf="@+id/tv_title"
|
||||||
|
|||||||
@@ -59,7 +59,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:ellipsize="end"
|
android:ellipsize="end"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:maxLines="1"
|
android:maxLines="1"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="32sp"
|
android:textSize="32sp"
|
||||||
@@ -79,7 +79,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="8dp"
|
android:layout_marginTop="8dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:textColor="@color/white"
|
android:textColor="@color/white"
|
||||||
android:textSize="16sp"
|
android:textSize="16sp"
|
||||||
android:visibility="gone"
|
android:visibility="gone"
|
||||||
@@ -91,7 +91,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="8dp"
|
android:layout_marginTop="8dp"
|
||||||
android:background="@drawable/bg_round_corner_999_white"
|
android:background="@drawable/bg_round_corner_999_white"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:paddingVertical="8dp"
|
android:paddingVertical="8dp"
|
||||||
android:text="@string/screen_user_profile_follower_list"
|
android:text="@string/screen_user_profile_follower_list"
|
||||||
@@ -133,7 +133,7 @@
|
|||||||
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_4_263238_3bb9f1"
|
android:background="@drawable/bg_round_corner_4_263238_3bb9f1"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:paddingHorizontal="7dp"
|
android:paddingHorizontal="7dp"
|
||||||
android:paddingVertical="4dp"
|
android:paddingVertical="4dp"
|
||||||
android:text="@string/latest_content"
|
android:text="@string/latest_content"
|
||||||
@@ -157,7 +157,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginEnd="8dp"
|
android:layout_marginEnd="8dp"
|
||||||
android:background="@drawable/bg_round_corner_2_6_003851"
|
android:background="@drawable/bg_round_corner_2_6_003851"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:padding="2.6dp"
|
android:padding="2.6dp"
|
||||||
android:text="@string/screen_user_profile_latest_content_scheduled"
|
android:text="@string/screen_user_profile_latest_content_scheduled"
|
||||||
android:textColor="@color/color_3bb9f1"
|
android:textColor="@color/color_3bb9f1"
|
||||||
@@ -170,7 +170,7 @@
|
|||||||
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_2_6_28312b"
|
android:background="@drawable/bg_round_corner_2_6_28312b"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:padding="2.6dp"
|
android:padding="2.6dp"
|
||||||
android:textColor="@color/color_3bac6a"
|
android:textColor="@color/color_3bac6a"
|
||||||
@@ -183,7 +183,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginStart="8dp"
|
android:layout_marginStart="8dp"
|
||||||
android:background="@drawable/bg_round_corner_2_6_222222"
|
android:background="@drawable/bg_round_corner_2_6_222222"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:padding="2.6dp"
|
android:padding="2.6dp"
|
||||||
android:textColor="@color/color_777777"
|
android:textColor="@color/color_777777"
|
||||||
@@ -196,7 +196,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginStart="8dp"
|
android:layout_marginStart="8dp"
|
||||||
android:background="@drawable/bg_round_corner_2_6_7849bc"
|
android:background="@drawable/bg_round_corner_2_6_7849bc"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:padding="2.6dp"
|
android:padding="2.6dp"
|
||||||
android:text="@string/screen_user_profile_latest_content_point"
|
android:text="@string/screen_user_profile_latest_content_point"
|
||||||
@@ -212,7 +212,7 @@
|
|||||||
android:layout_marginTop="2.6dp"
|
android:layout_marginTop="2.6dp"
|
||||||
android:layout_marginBottom="6.7dp"
|
android:layout_marginBottom="6.7dp"
|
||||||
android:ellipsize="end"
|
android:ellipsize="end"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:maxLines="2"
|
android:maxLines="2"
|
||||||
android:textColor="@color/white"
|
android:textColor="@color/white"
|
||||||
android:textSize="18sp"
|
android:textSize="18sp"
|
||||||
@@ -240,7 +240,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginStart="6dp"
|
android:layout_marginStart="6dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:textColor="@color/color_777777"
|
android:textColor="@color/color_777777"
|
||||||
android:textSize="18sp"
|
android:textSize="18sp"
|
||||||
@@ -266,7 +266,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginStart="6dp"
|
android:layout_marginStart="6dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:textColor="@color/color_777777"
|
android:textColor="@color/color_777777"
|
||||||
android:textSize="18sp"
|
android:textSize="18sp"
|
||||||
@@ -347,7 +347,7 @@
|
|||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"
|
||||||
android:layout_centerVertical="true"
|
android:layout_centerVertical="true"
|
||||||
android:drawablePadding="6.7dp"
|
android:drawablePadding="6.7dp"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center_vertical"
|
android:gravity="center_vertical"
|
||||||
android:textColor="@color/white"
|
android:textColor="@color/white"
|
||||||
android:textSize="20sp"
|
android:textSize="20sp"
|
||||||
|
|||||||
@@ -25,7 +25,7 @@
|
|||||||
<TextView
|
<TextView
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_user_profile_cheer_label"
|
android:text="@string/screen_user_profile_cheer_label"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="14.7sp" />
|
android:textSize="14.7sp" />
|
||||||
@@ -35,7 +35,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginStart="6.7dp"
|
android:layout_marginStart="6.7dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:textColor="@color/color_777777"
|
android:textColor="@color/color_777777"
|
||||||
android:textSize="12sp"
|
android:textSize="12sp"
|
||||||
tools:text="3" />
|
tools:text="3" />
|
||||||
@@ -73,7 +73,7 @@
|
|||||||
android:textSize="13.3sp"
|
android:textSize="13.3sp"
|
||||||
android:theme="@style/EditTextStyle"
|
android:theme="@style/EditTextStyle"
|
||||||
tools:ignore="LabelFor"
|
tools:ignore="LabelFor"
|
||||||
android:fontFamily="@font/pretendard_medium" />
|
android:fontFamily="@font/medium" />
|
||||||
|
|
||||||
<ImageView
|
<ImageView
|
||||||
android:id="@+id/iv_send"
|
android:id="@+id/iv_send"
|
||||||
@@ -107,7 +107,7 @@
|
|||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginVertical="60dp"
|
android:layout_marginVertical="60dp"
|
||||||
android:fontFamily="@font/pretendard_light"
|
android:fontFamily="@font/light"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:visibility="gone"
|
android:visibility="gone"
|
||||||
android:text="@string/screen_user_profile_cheer_empty"
|
android:text="@string/screen_user_profile_cheer_empty"
|
||||||
|
|||||||
@@ -29,7 +29,7 @@
|
|||||||
<TextView
|
<TextView
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_user_profile_donation_toggle_title"
|
android:text="@string/screen_user_profile_donation_toggle_title"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="16sp" />
|
android:textSize="16sp" />
|
||||||
@@ -47,7 +47,7 @@
|
|||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="10.7dp"
|
android:layout_marginTop="10.7dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="end"
|
android:gravity="end"
|
||||||
android:text="@string/screen_user_profile_donation_toggle_desc"
|
android:text="@string/screen_user_profile_donation_toggle_desc"
|
||||||
android:textColor="@color/color_555555"
|
android:textColor="@color/color_555555"
|
||||||
@@ -71,7 +71,7 @@
|
|||||||
<TextView
|
<TextView
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_user_profile_donation_stat_today"
|
android:text="@string/screen_user_profile_donation_stat_today"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="12sp" />
|
android:textSize="12sp" />
|
||||||
@@ -81,7 +81,7 @@
|
|||||||
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"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="12sp"
|
android:textSize="12sp"
|
||||||
tools:ignore="RelativeOverlap" />
|
tools:ignore="RelativeOverlap" />
|
||||||
@@ -91,7 +91,7 @@
|
|||||||
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:fontFamily="@font/pretendard_light"
|
android:fontFamily="@font/light"
|
||||||
android:text="@string/screen_user_profile_donation_can_unit_with_space"
|
android:text="@string/screen_user_profile_donation_can_unit_with_space"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="12sp" />
|
android:textSize="12sp" />
|
||||||
@@ -105,7 +105,7 @@
|
|||||||
<TextView
|
<TextView
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_user_profile_donation_stat_last_week"
|
android:text="@string/screen_user_profile_donation_stat_last_week"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="12sp" />
|
android:textSize="12sp" />
|
||||||
@@ -115,7 +115,7 @@
|
|||||||
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"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="12sp"
|
android:textSize="12sp"
|
||||||
tools:ignore="RelativeOverlap" />
|
tools:ignore="RelativeOverlap" />
|
||||||
@@ -125,7 +125,7 @@
|
|||||||
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:fontFamily="@font/pretendard_light"
|
android:fontFamily="@font/light"
|
||||||
android:text="@string/screen_user_profile_donation_can_unit_with_space"
|
android:text="@string/screen_user_profile_donation_can_unit_with_space"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="12sp" />
|
android:textSize="12sp" />
|
||||||
@@ -139,7 +139,7 @@
|
|||||||
<TextView
|
<TextView
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_user_profile_donation_stat_this_month"
|
android:text="@string/screen_user_profile_donation_stat_this_month"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="12sp" />
|
android:textSize="12sp" />
|
||||||
@@ -149,7 +149,7 @@
|
|||||||
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"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="12sp"
|
android:textSize="12sp"
|
||||||
tools:ignore="RelativeOverlap" />
|
tools:ignore="RelativeOverlap" />
|
||||||
@@ -159,7 +159,7 @@
|
|||||||
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:fontFamily="@font/pretendard_light"
|
android:fontFamily="@font/light"
|
||||||
android:text="@string/screen_user_profile_donation_can_unit_with_space"
|
android:text="@string/screen_user_profile_donation_can_unit_with_space"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="12sp" />
|
android:textSize="12sp" />
|
||||||
@@ -176,7 +176,7 @@
|
|||||||
<TextView
|
<TextView
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_user_profile_donation_total_label"
|
android:text="@string/screen_user_profile_donation_total_label"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="14.7sp" />
|
android:textSize="14.7sp" />
|
||||||
@@ -186,7 +186,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginStart="6.7dp"
|
android:layout_marginStart="6.7dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:textColor="@color/color_80d8ff"
|
android:textColor="@color/color_80d8ff"
|
||||||
android:textSize="12sp"
|
android:textSize="12sp"
|
||||||
tools:text="56" />
|
tools:text="56" />
|
||||||
@@ -194,7 +194,7 @@
|
|||||||
<TextView
|
<TextView
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_user_profile_donation_total_unit"
|
android:text="@string/screen_user_profile_donation_total_unit"
|
||||||
android:textColor="@color/color_777777"
|
android:textColor="@color/color_777777"
|
||||||
android:textSize="12sp" />
|
android:textSize="12sp" />
|
||||||
|
|||||||
@@ -14,7 +14,7 @@
|
|||||||
android:layout_centerVertical="true"
|
android:layout_centerVertical="true"
|
||||||
android:drawablePadding="6.7dp"
|
android:drawablePadding="6.7dp"
|
||||||
android:ellipsize="end"
|
android:ellipsize="end"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:minHeight="48dp"
|
android:minHeight="48dp"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
|
|||||||
@@ -21,7 +21,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="33.3dp"
|
android:layout_marginTop="33.3dp"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:text="@string/dialog_audition_method_title"
|
android:text="@string/dialog_audition_method_title"
|
||||||
android:textColor="@color/color_bbbbbb"
|
android:textColor="@color/color_bbbbbb"
|
||||||
@@ -59,7 +59,7 @@
|
|||||||
<TextView
|
<TextView
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/dialog_audition_method_upload"
|
android:text="@string/dialog_audition_method_upload"
|
||||||
android:textColor="@color/color_3bb9f1"
|
android:textColor="@color/color_3bb9f1"
|
||||||
android:textSize="14.7sp" />
|
android:textSize="14.7sp" />
|
||||||
@@ -85,7 +85,7 @@
|
|||||||
<TextView
|
<TextView
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/dialog_audition_method_record"
|
android:text="@string/dialog_audition_method_record"
|
||||||
android:textColor="@color/color_3bb9f1"
|
android:textColor="@color/color_3bb9f1"
|
||||||
android:textSize="14.7sp" />
|
android:textSize="14.7sp" />
|
||||||
@@ -96,7 +96,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="13.3dp"
|
android:layout_marginTop="13.3dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/dialog_audition_method_note"
|
android:text="@string/dialog_audition_method_note"
|
||||||
android:textColor="@color/color_777777"
|
android:textColor="@color/color_777777"
|
||||||
android:textSize="12sp"
|
android:textSize="12sp"
|
||||||
|
|||||||
@@ -13,7 +13,7 @@
|
|||||||
<TextView
|
<TextView
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:text="@string/screen_audio_content_detail_delete_title"
|
android:text="@string/screen_audio_content_detail_delete_title"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
@@ -24,7 +24,7 @@
|
|||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="21.3dp"
|
android:layout_marginTop="21.3dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="13.3sp"
|
android:textSize="13.3sp"
|
||||||
@@ -42,7 +42,7 @@
|
|||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:drawablePadding="13.3dp"
|
android:drawablePadding="13.3dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center_vertical"
|
android:gravity="center_vertical"
|
||||||
android:text="@string/screen_audio_content_detail_delete_notice"
|
android:text="@string/screen_audio_content_detail_delete_notice"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
@@ -54,7 +54,7 @@
|
|||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="10.3dp"
|
android:layout_marginTop="10.3dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:lineSpacingExtra="4dp"
|
android:lineSpacingExtra="4dp"
|
||||||
android:text="@string/screen_audio_content_detail_delete_desc"
|
android:text="@string/screen_audio_content_detail_delete_desc"
|
||||||
@@ -74,7 +74,7 @@
|
|||||||
android:layout_marginEnd="6.7dp"
|
android:layout_marginEnd="6.7dp"
|
||||||
android:layout_weight="1"
|
android:layout_weight="1"
|
||||||
android:background="@drawable/bg_round_corner_10_transparent_3bb9f1"
|
android:background="@drawable/bg_round_corner_10_transparent_3bb9f1"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:paddingVertical="15.7dp"
|
android:paddingVertical="15.7dp"
|
||||||
android:text="@string/cancel"
|
android:text="@string/cancel"
|
||||||
@@ -88,7 +88,7 @@
|
|||||||
android:layout_marginStart="6.7dp"
|
android:layout_marginStart="6.7dp"
|
||||||
android:layout_weight="1"
|
android:layout_weight="1"
|
||||||
android:background="@drawable/bg_round_corner_10_3bb9f1"
|
android:background="@drawable/bg_round_corner_10_3bb9f1"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:paddingVertical="15.7dp"
|
android:paddingVertical="15.7dp"
|
||||||
android:text="@string/confirm"
|
android:text="@string/confirm"
|
||||||
|
|||||||
@@ -35,7 +35,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginStart="13.3dp"
|
android:layout_marginStart="13.3dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:text="@string/screen_audio_content_detail_pin"
|
android:text="@string/screen_audio_content_detail_pin"
|
||||||
android:textColor="@color/color_e2e2e2"
|
android:textColor="@color/color_e2e2e2"
|
||||||
@@ -62,7 +62,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginStart="13.3dp"
|
android:layout_marginStart="13.3dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:text="@string/screen_audio_content_detail_edit"
|
android:text="@string/screen_audio_content_detail_edit"
|
||||||
android:textColor="@color/color_e2e2e2"
|
android:textColor="@color/color_e2e2e2"
|
||||||
@@ -89,7 +89,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginStart="13.3dp"
|
android:layout_marginStart="13.3dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:text="@string/screen_audio_content_detail_delete"
|
android:text="@string/screen_audio_content_detail_delete"
|
||||||
android:textColor="@color/color_e2e2e2"
|
android:textColor="@color/color_e2e2e2"
|
||||||
@@ -101,7 +101,7 @@
|
|||||||
android:id="@+id/tv_report"
|
android:id="@+id/tv_report"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:paddingHorizontal="21.3dp"
|
android:paddingHorizontal="21.3dp"
|
||||||
android:paddingVertical="8dp"
|
android:paddingVertical="8dp"
|
||||||
android:text="@string/screen_audio_content_detail_report"
|
android:text="@string/screen_audio_content_detail_report"
|
||||||
|
|||||||
@@ -13,7 +13,7 @@
|
|||||||
<TextView
|
<TextView
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:text="@string/audio_content_order_confirm_title"
|
android:text="@string/audio_content_order_confirm_title"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
@@ -56,14 +56,14 @@
|
|||||||
android:textSize="7sp"
|
android:textSize="7sp"
|
||||||
tools:ignore="SmallSp"
|
tools:ignore="SmallSp"
|
||||||
tools:text="커버곡"
|
tools:text="커버곡"
|
||||||
android:fontFamily="@font/pretendard_medium" />
|
android:fontFamily="@font/medium" />
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
android:id="@+id/tv_title"
|
android:id="@+id/tv_title"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="2dp"
|
android:layout_marginTop="2dp"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:textColor="@color/color_d2d2d2"
|
android:textColor="@color/color_d2d2d2"
|
||||||
android:textSize="11.3sp"
|
android:textSize="11.3sp"
|
||||||
tools:text="매버릭 팔레트 (feat. J-DRAGON)" />
|
tools:text="매버릭 팔레트 (feat. J-DRAGON)" />
|
||||||
@@ -89,7 +89,7 @@
|
|||||||
android:layout_centerVertical="true"
|
android:layout_centerVertical="true"
|
||||||
android:layout_marginHorizontal="4.3dp"
|
android:layout_marginHorizontal="4.3dp"
|
||||||
android:layout_toEndOf="@+id/iv_profile"
|
android:layout_toEndOf="@+id/iv_profile"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:textColor="@color/color_777777"
|
android:textColor="@color/color_777777"
|
||||||
android:textSize="10sp"
|
android:textSize="10sp"
|
||||||
tools:ignore="SmallSp"
|
tools:ignore="SmallSp"
|
||||||
@@ -101,7 +101,7 @@
|
|||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="6.7dp"
|
android:layout_marginTop="6.7dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:textColor="@color/color_777777"
|
android:textColor="@color/color_777777"
|
||||||
android:textSize="11sp"
|
android:textSize="11sp"
|
||||||
tools:ignore="SmallSp"
|
tools:ignore="SmallSp"
|
||||||
@@ -115,7 +115,7 @@
|
|||||||
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"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="13.3sp"
|
android:textSize="13.3sp"
|
||||||
@@ -143,7 +143,7 @@
|
|||||||
android:id="@+id/tv_point"
|
android:id="@+id/tv_point"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="13.3sp"
|
android:textSize="13.3sp"
|
||||||
android:visibility="gone"
|
android:visibility="gone"
|
||||||
@@ -153,7 +153,7 @@
|
|||||||
android:id="@+id/tv_plus"
|
android:id="@+id/tv_plus"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/audio_content_order_plus"
|
android:text="@string/audio_content_order_plus"
|
||||||
android:visibility="gone"
|
android:visibility="gone"
|
||||||
android:layout_marginHorizontal="10dp"
|
android:layout_marginHorizontal="10dp"
|
||||||
@@ -172,7 +172,7 @@
|
|||||||
android:id="@+id/tv_can"
|
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:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="13.3sp"
|
android:textSize="13.3sp"
|
||||||
tools:text="300" />
|
tools:text="300" />
|
||||||
@@ -190,7 +190,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_weight="1"
|
android:layout_weight="1"
|
||||||
android:background="@drawable/bg_round_corner_10_transparent_3bb9f1"
|
android:background="@drawable/bg_round_corner_10_transparent_3bb9f1"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:paddingVertical="15.7dp"
|
android:paddingVertical="15.7dp"
|
||||||
android:text="@string/cancel"
|
android:text="@string/cancel"
|
||||||
@@ -204,7 +204,7 @@
|
|||||||
android:layout_marginStart="12dp"
|
android:layout_marginStart="12dp"
|
||||||
android:layout_weight="1"
|
android:layout_weight="1"
|
||||||
android:background="@drawable/bg_round_corner_10_3bb9f1"
|
android:background="@drawable/bg_round_corner_10_3bb9f1"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:paddingVertical="15.7dp"
|
android:paddingVertical="15.7dp"
|
||||||
android:text="@string/confirm"
|
android:text="@string/confirm"
|
||||||
|
|||||||
@@ -12,7 +12,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_gravity="center"
|
android:layout_gravity="center"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_audio_content_detail_report_title"
|
android:text="@string/screen_audio_content_detail_report_title"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="18.3sp" />
|
android:textSize="18.3sp" />
|
||||||
@@ -31,7 +31,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:buttonTint="@color/color_9970ff"
|
android:buttonTint="@color/color_9970ff"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_audio_content_detail_report_reason_harassment"
|
android:text="@string/screen_audio_content_detail_report_reason_harassment"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="14sp" />
|
android:textSize="14sp" />
|
||||||
@@ -41,7 +41,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:buttonTint="@color/color_9970ff"
|
android:buttonTint="@color/color_9970ff"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_audio_content_detail_report_reason_privacy"
|
android:text="@string/screen_audio_content_detail_report_reason_privacy"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="14sp" />
|
android:textSize="14sp" />
|
||||||
@@ -51,7 +51,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:buttonTint="@color/color_9970ff"
|
android:buttonTint="@color/color_9970ff"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_audio_content_detail_report_reason_impersonation"
|
android:text="@string/screen_audio_content_detail_report_reason_impersonation"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="14sp" />
|
android:textSize="14sp" />
|
||||||
@@ -61,7 +61,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:buttonTint="@color/color_9970ff"
|
android:buttonTint="@color/color_9970ff"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_audio_content_detail_report_reason_threat"
|
android:text="@string/screen_audio_content_detail_report_reason_threat"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="14sp" />
|
android:textSize="14sp" />
|
||||||
@@ -71,7 +71,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:buttonTint="@color/color_9970ff"
|
android:buttonTint="@color/color_9970ff"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_audio_content_detail_report_reason_child_abuse"
|
android:text="@string/screen_audio_content_detail_report_reason_child_abuse"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="14sp" />
|
android:textSize="14sp" />
|
||||||
@@ -81,7 +81,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:buttonTint="@color/color_9970ff"
|
android:buttonTint="@color/color_9970ff"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_audio_content_detail_report_reason_hate"
|
android:text="@string/screen_audio_content_detail_report_reason_hate"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="14sp" />
|
android:textSize="14sp" />
|
||||||
@@ -91,7 +91,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:buttonTint="@color/color_9970ff"
|
android:buttonTint="@color/color_9970ff"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_audio_content_detail_report_reason_spam"
|
android:text="@string/screen_audio_content_detail_report_reason_spam"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="14sp" />
|
android:textSize="14sp" />
|
||||||
@@ -101,7 +101,7 @@
|
|||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="21.3dp"
|
android:layout_marginTop="21.3dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:text="@string/screen_audio_content_detail_report_desc"
|
android:text="@string/screen_audio_content_detail_report_desc"
|
||||||
android:textColor="@color/color_dd4500"
|
android:textColor="@color/color_dd4500"
|
||||||
@@ -120,7 +120,7 @@
|
|||||||
android:layout_marginEnd="6.7dp"
|
android:layout_marginEnd="6.7dp"
|
||||||
android:layout_weight="1"
|
android:layout_weight="1"
|
||||||
android:background="@drawable/bg_round_corner_10_transparent_3bb9f1"
|
android:background="@drawable/bg_round_corner_10_transparent_3bb9f1"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:paddingVertical="15.7dp"
|
android:paddingVertical="15.7dp"
|
||||||
android:text="@string/cancel"
|
android:text="@string/cancel"
|
||||||
@@ -134,7 +134,7 @@
|
|||||||
android:layout_marginStart="6.7dp"
|
android:layout_marginStart="6.7dp"
|
||||||
android:layout_weight="1"
|
android:layout_weight="1"
|
||||||
android:background="@drawable/bg_round_corner_10_3bb9f1"
|
android:background="@drawable/bg_round_corner_10_3bb9f1"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:paddingVertical="15.7dp"
|
android:paddingVertical="15.7dp"
|
||||||
android:text="@string/report_button"
|
android:text="@string/report_button"
|
||||||
|
|||||||
@@ -26,7 +26,7 @@
|
|||||||
android:text="@string/report_title"
|
android:text="@string/report_title"
|
||||||
android:textColor="@color/white"
|
android:textColor="@color/white"
|
||||||
android:textSize="18sp"
|
android:textSize="18sp"
|
||||||
android:fontFamily="@font/pretendard_medium" />
|
android:fontFamily="@font/medium" />
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
android:id="@+id/tv_delete"
|
android:id="@+id/tv_delete"
|
||||||
@@ -36,5 +36,5 @@
|
|||||||
android:text="@string/confirm_delete_title"
|
android:text="@string/confirm_delete_title"
|
||||||
android:textColor="#EF5350"
|
android:textColor="#EF5350"
|
||||||
android:textSize="18sp"
|
android:textSize="18sp"
|
||||||
android:fontFamily="@font/pretendard_medium" />
|
android:fontFamily="@font/medium" />
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
|||||||
@@ -20,7 +20,7 @@
|
|||||||
android:textSize="16sp"
|
android:textSize="16sp"
|
||||||
android:textStyle="bold"
|
android:textStyle="bold"
|
||||||
tools:ignore="RelativeOverlap"
|
tools:ignore="RelativeOverlap"
|
||||||
android:fontFamily="@font/pretendard_medium" />
|
android:fontFamily="@font/medium" />
|
||||||
|
|
||||||
<ImageView
|
<ImageView
|
||||||
android:id="@+id/iv_close"
|
android:id="@+id/iv_close"
|
||||||
@@ -51,7 +51,7 @@
|
|||||||
android:layout_marginTop="16dp"
|
android:layout_marginTop="16dp"
|
||||||
android:backgroundTint="@color/color_3bb9f1"
|
android:backgroundTint="@color/color_3bb9f1"
|
||||||
android:enabled="false"
|
android:enabled="false"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/report_button"
|
android:text="@string/report_button"
|
||||||
android:textColor="@color/white"
|
android:textColor="@color/white"
|
||||||
android:textSize="16sp" />
|
android:textSize="16sp" />
|
||||||
|
|||||||
@@ -12,7 +12,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_gravity="center"
|
android:layout_gravity="center"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/dialog_community_post_report_title"
|
android:text="@string/dialog_community_post_report_title"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="18.3sp" />
|
android:textSize="18.3sp" />
|
||||||
@@ -31,7 +31,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:buttonTint="@color/color_3bb9f1"
|
android:buttonTint="@color/color_3bb9f1"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/report_reason_unwanted_commercial"
|
android:text="@string/report_reason_unwanted_commercial"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="14sp" />
|
android:textSize="14sp" />
|
||||||
@@ -41,7 +41,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:buttonTint="@color/color_3bb9f1"
|
android:buttonTint="@color/color_3bb9f1"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/report_reason_pornography"
|
android:text="@string/report_reason_pornography"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="14sp" />
|
android:textSize="14sp" />
|
||||||
@@ -51,7 +51,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:buttonTint="@color/color_3bb9f1"
|
android:buttonTint="@color/color_3bb9f1"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/report_reason_child_abuse_spaced"
|
android:text="@string/report_reason_child_abuse_spaced"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="14sp" />
|
android:textSize="14sp" />
|
||||||
@@ -61,7 +61,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:buttonTint="@color/color_3bb9f1"
|
android:buttonTint="@color/color_3bb9f1"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/report_reason_hate_or_violence"
|
android:text="@string/report_reason_hate_or_violence"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="14sp" />
|
android:textSize="14sp" />
|
||||||
@@ -71,7 +71,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:buttonTint="@color/color_3bb9f1"
|
android:buttonTint="@color/color_3bb9f1"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/report_reason_terror"
|
android:text="@string/report_reason_terror"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="14sp" />
|
android:textSize="14sp" />
|
||||||
@@ -81,7 +81,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:buttonTint="@color/color_3bb9f1"
|
android:buttonTint="@color/color_3bb9f1"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/report_reason_harassment_or_violence"
|
android:text="@string/report_reason_harassment_or_violence"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="14sp" />
|
android:textSize="14sp" />
|
||||||
@@ -91,7 +91,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:buttonTint="@color/color_3bb9f1"
|
android:buttonTint="@color/color_3bb9f1"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/report_reason_self_harm"
|
android:text="@string/report_reason_self_harm"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="14sp" />
|
android:textSize="14sp" />
|
||||||
@@ -101,7 +101,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:buttonTint="@color/color_3bb9f1"
|
android:buttonTint="@color/color_3bb9f1"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/report_reason_misinformation"
|
android:text="@string/report_reason_misinformation"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="14sp" />
|
android:textSize="14sp" />
|
||||||
@@ -120,7 +120,7 @@
|
|||||||
android:layout_marginEnd="6.7dp"
|
android:layout_marginEnd="6.7dp"
|
||||||
android:layout_weight="1"
|
android:layout_weight="1"
|
||||||
android:background="@drawable/bg_round_corner_6_7_13181b_3bb9f1"
|
android:background="@drawable/bg_round_corner_6_7_13181b_3bb9f1"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:paddingVertical="15.7dp"
|
android:paddingVertical="15.7dp"
|
||||||
android:text="@string/cancel"
|
android:text="@string/cancel"
|
||||||
@@ -134,7 +134,7 @@
|
|||||||
android:layout_marginStart="6.7dp"
|
android:layout_marginStart="6.7dp"
|
||||||
android:layout_weight="1"
|
android:layout_weight="1"
|
||||||
android:background="@drawable/bg_round_corner_6_7_3bb9f1"
|
android:background="@drawable/bg_round_corner_6_7_3bb9f1"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:paddingVertical="15.7dp"
|
android:paddingVertical="15.7dp"
|
||||||
android:text="@string/report_button"
|
android:text="@string/report_button"
|
||||||
|
|||||||
@@ -12,7 +12,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="40dp"
|
android:layout_marginTop="40dp"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:textColor="@color/color_bbbbbb"
|
android:textColor="@color/color_bbbbbb"
|
||||||
android:textSize="18.3sp"
|
android:textSize="18.3sp"
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="6dp"
|
android:layout_marginTop="6dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:textColor="@color/color_bbbbbb"
|
android:textColor="@color/color_bbbbbb"
|
||||||
android:textSize="15sp"
|
android:textSize="15sp"
|
||||||
@@ -54,7 +54,7 @@
|
|||||||
android:layout_marginEnd="13.3dp"
|
android:layout_marginEnd="13.3dp"
|
||||||
android:layout_weight="1"
|
android:layout_weight="1"
|
||||||
android:background="@drawable/bg_round_corner_10_13181b_3bb9f1"
|
android:background="@drawable/bg_round_corner_10_13181b_3bb9f1"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:paddingVertical="16dp"
|
android:paddingVertical="16dp"
|
||||||
android:textColor="@color/color_3bb9f1"
|
android:textColor="@color/color_3bb9f1"
|
||||||
@@ -67,7 +67,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_weight="1"
|
android:layout_weight="1"
|
||||||
android:background="@drawable/bg_round_corner_10_3bb9f1"
|
android:background="@drawable/bg_round_corner_10_3bb9f1"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:paddingVertical="16dp"
|
android:paddingVertical="16dp"
|
||||||
android:textColor="@color/white"
|
android:textColor="@color/white"
|
||||||
|
|||||||
@@ -12,7 +12,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="40dp"
|
android:layout_marginTop="40dp"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:textColor="@color/color_bbbbbb"
|
android:textColor="@color/color_bbbbbb"
|
||||||
android:textSize="18.3sp"
|
android:textSize="18.3sp"
|
||||||
@@ -28,7 +28,7 @@
|
|||||||
android:layout_marginHorizontal="13.3dp"
|
android:layout_marginHorizontal="13.3dp"
|
||||||
android:layout_marginTop="13.3dp"
|
android:layout_marginTop="13.3dp"
|
||||||
android:background="@drawable/bg_round_corner_6_7_333333_3bb9f1"
|
android:background="@drawable/bg_round_corner_6_7_333333_3bb9f1"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="top"
|
android:gravity="top"
|
||||||
android:hint="취소사유를 입력해 주세요"
|
android:hint="취소사유를 입력해 주세요"
|
||||||
android:importantForAutofill="no"
|
android:importantForAutofill="no"
|
||||||
@@ -63,7 +63,7 @@
|
|||||||
android:layout_marginEnd="13.3dp"
|
android:layout_marginEnd="13.3dp"
|
||||||
android:layout_weight="1"
|
android:layout_weight="1"
|
||||||
android:background="@drawable/bg_round_corner_10_13181b_3bb9f1"
|
android:background="@drawable/bg_round_corner_10_13181b_3bb9f1"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:paddingVertical="16dp"
|
android:paddingVertical="16dp"
|
||||||
android:textColor="@color/color_3bb9f1"
|
android:textColor="@color/color_3bb9f1"
|
||||||
@@ -76,7 +76,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_weight="1"
|
android:layout_weight="1"
|
||||||
android:background="@drawable/bg_round_corner_10_3bb9f1"
|
android:background="@drawable/bg_round_corner_10_3bb9f1"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:paddingVertical="16dp"
|
android:paddingVertical="16dp"
|
||||||
android:textColor="@color/white"
|
android:textColor="@color/white"
|
||||||
|
|||||||
@@ -12,7 +12,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="40dp"
|
android:layout_marginTop="40dp"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:text="@string/screen_live_room_dialog_title_no_chat"
|
android:text="@string/screen_live_room_dialog_title_no_chat"
|
||||||
android:textColor="@color/color_bbbbbb"
|
android:textColor="@color/color_bbbbbb"
|
||||||
@@ -47,7 +47,7 @@
|
|||||||
android:textColor="@color/color_bbbbbb"
|
android:textColor="@color/color_bbbbbb"
|
||||||
android:textSize="16.7sp"
|
android:textSize="16.7sp"
|
||||||
tools:text="델1002"
|
tools:text="델1002"
|
||||||
android:fontFamily="@font/pretendard_medium" />
|
android:fontFamily="@font/medium" />
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
@@ -55,7 +55,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="21dp"
|
android:layout_marginTop="21dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:text="@string/screen_live_room_dialog_no_chat_desc"
|
android:text="@string/screen_live_room_dialog_no_chat_desc"
|
||||||
android:textColor="@color/color_bbbbbb"
|
android:textColor="@color/color_bbbbbb"
|
||||||
@@ -83,7 +83,7 @@
|
|||||||
android:layout_marginEnd="13.3dp"
|
android:layout_marginEnd="13.3dp"
|
||||||
android:layout_weight="1"
|
android:layout_weight="1"
|
||||||
android:background="@drawable/bg_round_corner_10_13181b_3bb9f1"
|
android:background="@drawable/bg_round_corner_10_13181b_3bb9f1"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:paddingVertical="16dp"
|
android:paddingVertical="16dp"
|
||||||
android:text="@string/cancel"
|
android:text="@string/cancel"
|
||||||
@@ -96,7 +96,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_weight="1"
|
android:layout_weight="1"
|
||||||
android:background="@drawable/bg_round_corner_10_3bb9f1"
|
android:background="@drawable/bg_round_corner_10_3bb9f1"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:paddingVertical="16dp"
|
android:paddingVertical="16dp"
|
||||||
android:text="@string/screen_live_room_ok"
|
android:text="@string/screen_live_room_ok"
|
||||||
|
|||||||
@@ -13,7 +13,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="40dp"
|
android:layout_marginTop="40dp"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:textColor="@color/color_bbbbbb"
|
android:textColor="@color/color_bbbbbb"
|
||||||
android:textSize="18.3sp"
|
android:textSize="18.3sp"
|
||||||
@@ -24,7 +24,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="21.3dp"
|
android:layout_marginTop="21.3dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:lineSpacingExtra="4sp"
|
android:lineSpacingExtra="4sp"
|
||||||
android:textColor="@color/color_bbbbbb"
|
android:textColor="@color/color_bbbbbb"
|
||||||
@@ -51,7 +51,7 @@
|
|||||||
<TextView
|
<TextView
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/dialog_live_payment_start_time_prefix"
|
android:text="@string/dialog_live_payment_start_time_prefix"
|
||||||
android:textColor="@color/color_bbbbbb"
|
android:textColor="@color/color_bbbbbb"
|
||||||
android:textSize="13.3sp" />
|
android:textSize="13.3sp" />
|
||||||
@@ -60,7 +60,7 @@
|
|||||||
android:id="@+id/tv_start_date"
|
android:id="@+id/tv_start_date"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:textColor="@color/color_bbbbbb"
|
android:textColor="@color/color_bbbbbb"
|
||||||
android:textSize="13.3sp"
|
android:textSize="13.3sp"
|
||||||
tools:text="2024-01-01 15:30" />
|
tools:text="2024-01-01 15:30" />
|
||||||
@@ -75,7 +75,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="13.3dp"
|
android:layout_marginTop="13.3dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/dialog_live_payment_current_time_prefix"
|
android:text="@string/dialog_live_payment_current_time_prefix"
|
||||||
android:textColor="@color/color_bbbbbb"
|
android:textColor="@color/color_bbbbbb"
|
||||||
android:textSize="13.3sp" />
|
android:textSize="13.3sp" />
|
||||||
@@ -85,7 +85,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="13.3dp"
|
android:layout_marginTop="13.3dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:textColor="@color/color_bbbbbb"
|
android:textColor="@color/color_bbbbbb"
|
||||||
android:textSize="13.3sp"
|
android:textSize="13.3sp"
|
||||||
tools:text="2024-01-01 19:30" />
|
tools:text="2024-01-01 19:30" />
|
||||||
@@ -97,7 +97,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="16.7dp"
|
android:layout_marginTop="16.7dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:lineSpacingExtra="4sp"
|
android:lineSpacingExtra="4sp"
|
||||||
android:textColor="@color/color_bbbbbb"
|
android:textColor="@color/color_bbbbbb"
|
||||||
android:textSize="15sp"
|
android:textSize="15sp"
|
||||||
@@ -117,7 +117,7 @@
|
|||||||
android:layout_marginEnd="13.3dp"
|
android:layout_marginEnd="13.3dp"
|
||||||
android:layout_weight="1"
|
android:layout_weight="1"
|
||||||
android:background="@drawable/bg_round_corner_10_13181b_3bb9f1"
|
android:background="@drawable/bg_round_corner_10_13181b_3bb9f1"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:paddingVertical="16dp"
|
android:paddingVertical="16dp"
|
||||||
android:textColor="@color/color_3bb9f1"
|
android:textColor="@color/color_3bb9f1"
|
||||||
@@ -130,7 +130,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_weight="2"
|
android:layout_weight="2"
|
||||||
android:background="@drawable/bg_round_corner_10_3bb9f1"
|
android:background="@drawable/bg_round_corner_10_3bb9f1"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:paddingVertical="16dp"
|
android:paddingVertical="16dp"
|
||||||
android:textColor="@color/white"
|
android:textColor="@color/white"
|
||||||
|
|||||||
@@ -27,7 +27,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginStart="11.7dp"
|
android:layout_marginStart="11.7dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="13.3sp"
|
android:textSize="13.3sp"
|
||||||
tools:text="OOO님이 스피커 요청을 했어요!\n스피커로 초대할까요?" />
|
tools:text="OOO님이 스피커 요청을 했어요!\n스피커로 초대할까요?" />
|
||||||
@@ -46,7 +46,7 @@
|
|||||||
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_13_3_33ffffff_ffffff"
|
android:background="@drawable/bg_round_corner_13_3_33ffffff_ffffff"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:letterSpacing="-0.03"
|
android:letterSpacing="-0.03"
|
||||||
android:paddingHorizontal="8dp"
|
android:paddingHorizontal="8dp"
|
||||||
android:paddingVertical="8.3dp"
|
android:paddingVertical="8.3dp"
|
||||||
@@ -61,7 +61,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginStart="6.7dp"
|
android:layout_marginStart="6.7dp"
|
||||||
android:background="@drawable/bg_round_corner_13_3_ffffff"
|
android:background="@drawable/bg_round_corner_13_3_ffffff"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:letterSpacing="-0.03"
|
android:letterSpacing="-0.03"
|
||||||
android:paddingHorizontal="8dp"
|
android:paddingHorizontal="8dp"
|
||||||
android:paddingVertical="8.3dp"
|
android:paddingVertical="8.3dp"
|
||||||
|
|||||||
@@ -26,7 +26,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_centerVertical="true"
|
android:layout_centerVertical="true"
|
||||||
android:drawablePadding="6.7dp"
|
android:drawablePadding="6.7dp"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center_vertical"
|
android:gravity="center_vertical"
|
||||||
android:text="@string/screen_live_room_donation_title"
|
android:text="@string/screen_live_room_donation_title"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
@@ -41,7 +41,7 @@
|
|||||||
android:layout_marginEnd="6.7dp"
|
android:layout_marginEnd="6.7dp"
|
||||||
android:layout_toStartOf="@+id/tv_charge"
|
android:layout_toStartOf="@+id/tv_charge"
|
||||||
android:drawablePadding="6.7dp"
|
android:drawablePadding="6.7dp"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="16sp"
|
android:textSize="16sp"
|
||||||
@@ -56,7 +56,7 @@
|
|||||||
android:layout_alignParentEnd="true"
|
android:layout_alignParentEnd="true"
|
||||||
android:layout_centerVertical="true"
|
android:layout_centerVertical="true"
|
||||||
android:background="@drawable/bg_round_corner_6_7_13181b_3bb9f1"
|
android:background="@drawable/bg_round_corner_6_7_13181b_3bb9f1"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:paddingHorizontal="13.3dp"
|
android:paddingHorizontal="13.3dp"
|
||||||
android:paddingVertical="8dp"
|
android:paddingVertical="8dp"
|
||||||
android:text="@string/screen_live_room_charge"
|
android:text="@string/screen_live_room_charge"
|
||||||
@@ -85,7 +85,7 @@
|
|||||||
android:layout_alignParentEnd="true"
|
android:layout_alignParentEnd="true"
|
||||||
android:button="@null"
|
android:button="@null"
|
||||||
android:drawablePadding="8dp"
|
android:drawablePadding="8dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:paddingHorizontal="8dp"
|
android:paddingHorizontal="8dp"
|
||||||
android:text="@string/screen_live_room_secret_mission"
|
android:text="@string/screen_live_room_secret_mission"
|
||||||
@@ -99,7 +99,7 @@
|
|||||||
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/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:hint="@string/screen_live_room_donation_input_min"
|
android:hint="@string/screen_live_room_donation_input_min"
|
||||||
android:importantForAutofill="no"
|
android:importantForAutofill="no"
|
||||||
android:inputType="numberSigned"
|
android:inputType="numberSigned"
|
||||||
@@ -122,7 +122,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_weight="1"
|
android:layout_weight="1"
|
||||||
android:background="@drawable/bg_round_corner_6_7_3bb9f1"
|
android:background="@drawable/bg_round_corner_6_7_3bb9f1"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:paddingVertical="12.7dp"
|
android:paddingVertical="12.7dp"
|
||||||
android:text="@string/screen_live_room_donation_plus_10"
|
android:text="@string/screen_live_room_donation_plus_10"
|
||||||
@@ -136,7 +136,7 @@
|
|||||||
android:layout_marginStart="8dp"
|
android:layout_marginStart="8dp"
|
||||||
android:layout_weight="1"
|
android:layout_weight="1"
|
||||||
android:background="@drawable/bg_round_corner_6_7_3bb9f1"
|
android:background="@drawable/bg_round_corner_6_7_3bb9f1"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:paddingVertical="12.7dp"
|
android:paddingVertical="12.7dp"
|
||||||
android:text="@string/screen_live_room_donation_plus_100"
|
android:text="@string/screen_live_room_donation_plus_100"
|
||||||
@@ -150,7 +150,7 @@
|
|||||||
android:layout_marginStart="8dp"
|
android:layout_marginStart="8dp"
|
||||||
android:layout_weight="1"
|
android:layout_weight="1"
|
||||||
android:background="@drawable/bg_round_corner_6_7_3bb9f1"
|
android:background="@drawable/bg_round_corner_6_7_3bb9f1"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:paddingVertical="12.7dp"
|
android:paddingVertical="12.7dp"
|
||||||
android:text="@string/screen_live_room_donation_plus_1000"
|
android:text="@string/screen_live_room_donation_plus_1000"
|
||||||
@@ -164,7 +164,7 @@
|
|||||||
android:layout_marginStart="8dp"
|
android:layout_marginStart="8dp"
|
||||||
android:layout_weight="1"
|
android:layout_weight="1"
|
||||||
android:background="@drawable/bg_round_corner_6_7_3bb9f1"
|
android:background="@drawable/bg_round_corner_6_7_3bb9f1"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:paddingVertical="12.7dp"
|
android:paddingVertical="12.7dp"
|
||||||
android:text="@string/screen_live_room_donation_plus_10000"
|
android:text="@string/screen_live_room_donation_plus_10000"
|
||||||
@@ -197,7 +197,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginStart="10.3dp"
|
android:layout_marginStart="10.3dp"
|
||||||
android:background="@drawable/bg_round_corner_6_7_88333333"
|
android:background="@drawable/bg_round_corner_6_7_88333333"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:hint="@string/screen_live_room_donation_message_hint"
|
android:hint="@string/screen_live_room_donation_message_hint"
|
||||||
android:importantForAutofill="no"
|
android:importantForAutofill="no"
|
||||||
android:inputType="text"
|
android:inputType="text"
|
||||||
@@ -224,7 +224,7 @@
|
|||||||
android:layout_marginEnd="13.3dp"
|
android:layout_marginEnd="13.3dp"
|
||||||
android:layout_weight="1"
|
android:layout_weight="1"
|
||||||
android:background="@drawable/bg_round_corner_10_13181b_3bb9f1"
|
android:background="@drawable/bg_round_corner_10_13181b_3bb9f1"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:paddingVertical="16dp"
|
android:paddingVertical="16dp"
|
||||||
android:text="@string/screen_live_room_cancel"
|
android:text="@string/screen_live_room_cancel"
|
||||||
@@ -237,7 +237,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_weight="1.5"
|
android:layout_weight="1.5"
|
||||||
android:background="@drawable/bg_round_corner_10_3bb9f1"
|
android:background="@drawable/bg_round_corner_10_3bb9f1"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:paddingVertical="16dp"
|
android:paddingVertical="16dp"
|
||||||
android:text="@string/screen_live_room_donation_title"
|
android:text="@string/screen_live_room_donation_title"
|
||||||
|
|||||||
@@ -18,7 +18,7 @@
|
|||||||
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:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_live_room_donation_history_title"
|
android:text="@string/screen_live_room_donation_history_title"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="14.7sp"
|
android:textSize="14.7sp"
|
||||||
@@ -31,7 +31,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_centerVertical="true"
|
android:layout_centerVertical="true"
|
||||||
android:layout_toEndOf="@+id/tv_title"
|
android:layout_toEndOf="@+id/tv_title"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="14.7sp"
|
android:textSize="14.7sp"
|
||||||
tools:ignore="RelativeOverlap"
|
tools:ignore="RelativeOverlap"
|
||||||
@@ -42,7 +42,7 @@
|
|||||||
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:fontFamily="@font/pretendard_light"
|
android:fontFamily="@font/light"
|
||||||
android:text="@string/screen_live_room_close"
|
android:text="@string/screen_live_room_close"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="14.7sp" />
|
android:textSize="14.7sp" />
|
||||||
@@ -53,7 +53,7 @@
|
|||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="30dp"
|
android:layout_marginTop="30dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:text="@string/screen_live_room_donation_history_empty"
|
android:text="@string/screen_live_room_donation_history_empty"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
|
|||||||
@@ -15,7 +15,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginStart="20dp"
|
android:layout_marginStart="20dp"
|
||||||
android:layout_marginTop="20dp"
|
android:layout_marginTop="20dp"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_live_room_donation_ranking_title"
|
android:text="@string/screen_live_room_donation_ranking_title"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="16.7sp" />
|
android:textSize="16.7sp" />
|
||||||
@@ -52,7 +52,7 @@
|
|||||||
<TextView
|
<TextView
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_live_room_total_label"
|
android:text="@string/screen_live_room_total_label"
|
||||||
android:textColor="@color/color_d2d2d2"
|
android:textColor="@color/color_d2d2d2"
|
||||||
android:textSize="13.3sp" />
|
android:textSize="13.3sp" />
|
||||||
@@ -68,7 +68,7 @@
|
|||||||
<TextView
|
<TextView
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_live_room_parenthesis_open"
|
android:text="@string/screen_live_room_parenthesis_open"
|
||||||
android:textColor="@color/color_d2d2d2"
|
android:textColor="@color/color_d2d2d2"
|
||||||
android:textSize="13.3sp" />
|
android:textSize="13.3sp" />
|
||||||
@@ -76,7 +76,7 @@
|
|||||||
<TextView
|
<TextView
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_live_room_donation_normal_label"
|
android:text="@string/screen_live_room_donation_normal_label"
|
||||||
android:textColor="@color/color_3bb9f1"
|
android:textColor="@color/color_3bb9f1"
|
||||||
android:textSize="13.3sp" />
|
android:textSize="13.3sp" />
|
||||||
@@ -84,7 +84,7 @@
|
|||||||
<TextView
|
<TextView
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_live_room_separator_slash"
|
android:text="@string/screen_live_room_separator_slash"
|
||||||
android:textColor="@color/color_d2d2d2"
|
android:textColor="@color/color_d2d2d2"
|
||||||
android:textSize="13.3sp" />
|
android:textSize="13.3sp" />
|
||||||
@@ -92,7 +92,7 @@
|
|||||||
<TextView
|
<TextView
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_live_room_donation_secret_label"
|
android:text="@string/screen_live_room_donation_secret_label"
|
||||||
android:textColor="@color/color_fedc00"
|
android:textColor="@color/color_fedc00"
|
||||||
android:textSize="13.3sp" />
|
android:textSize="13.3sp" />
|
||||||
@@ -100,7 +100,7 @@
|
|||||||
<TextView
|
<TextView
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_bold"
|
android:fontFamily="@font/bold"
|
||||||
android:text="@string/screen_live_room_parenthesis_close"
|
android:text="@string/screen_live_room_parenthesis_close"
|
||||||
android:textColor="@color/color_d2d2d2"
|
android:textColor="@color/color_d2d2d2"
|
||||||
android:textSize="13.3sp" />
|
android:textSize="13.3sp" />
|
||||||
@@ -120,7 +120,7 @@
|
|||||||
android:id="@+id/tv_total_can"
|
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:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="end"
|
android:gravity="end"
|
||||||
android:textColor="@color/color_80d8ff"
|
android:textColor="@color/color_80d8ff"
|
||||||
android:textSize="14sp"
|
android:textSize="14sp"
|
||||||
@@ -130,7 +130,7 @@
|
|||||||
android:id="@+id/tv_total_can_slash"
|
android:id="@+id/tv_total_can_slash"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="end"
|
android:gravity="end"
|
||||||
android:text="@string/screen_live_room_separator_slash"
|
android:text="@string/screen_live_room_separator_slash"
|
||||||
android:textColor="@color/white"
|
android:textColor="@color/white"
|
||||||
@@ -141,7 +141,7 @@
|
|||||||
android:id="@+id/tv_total_secret_can"
|
android:id="@+id/tv_total_secret_can"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:gravity="end"
|
android:gravity="end"
|
||||||
android:textColor="@color/color_fedc00"
|
android:textColor="@color/color_fedc00"
|
||||||
android:textSize="14sp"
|
android:textSize="14sp"
|
||||||
@@ -155,7 +155,7 @@
|
|||||||
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/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_live_room_can_unit"
|
android:text="@string/screen_live_room_can_unit"
|
||||||
android:textColor="@color/color_bbbbbb"
|
android:textColor="@color/color_bbbbbb"
|
||||||
android:textSize="10.7sp"
|
android:textSize="10.7sp"
|
||||||
@@ -174,7 +174,7 @@
|
|||||||
<TextView
|
<TextView
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:text="@string/screen_live_room_total_count_label"
|
android:text="@string/screen_live_room_total_count_label"
|
||||||
android:textColor="@color/color_eeeeee"
|
android:textColor="@color/color_eeeeee"
|
||||||
android:textSize="14.7sp" />
|
android:textSize="14.7sp" />
|
||||||
@@ -184,7 +184,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginStart="6.7dp"
|
android:layout_marginStart="6.7dp"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:textColor="@color/color_80d8ff"
|
android:textColor="@color/color_80d8ff"
|
||||||
android:textSize="12sp"
|
android:textSize="12sp"
|
||||||
tools:text="56" />
|
tools:text="56" />
|
||||||
@@ -192,7 +192,7 @@
|
|||||||
<TextView
|
<TextView
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:fontFamily="@font/pretendard_medium"
|
android:fontFamily="@font/medium"
|
||||||
android:layout_marginStart="2dp"
|
android:layout_marginStart="2dp"
|
||||||
android:text="@string/screen_live_room_people_unit"
|
android:text="@string/screen_live_room_people_unit"
|
||||||
android:textColor="@color/color_777777"
|
android:textColor="@color/color_777777"
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user