feat(can-payment): 다국적 통화 표기 지원 및 결제 금액 표시 개선

- KRW 고정 표기에서 벗어나 PG/해외 결제 등 다양한 통화 표기를 정확히 지원하기 위함
This commit is contained in:
2025-10-02 17:14:49 +09:00
parent 662f18bceb
commit 21f57444c8
5 changed files with 35 additions and 32 deletions

View File

@@ -60,33 +60,17 @@
tools:text="5000 캔 + 1000 캔" />
</LinearLayout>
<LinearLayout
android:id="@+id/ll_price"
<TextView
android:id="@+id/tv_price"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:fontFamily="@font/gmarket_sans_bold"
android:textColor="@color/color_eeeeee"
android:textSize="15.3sp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="parent">
<TextView
android:id="@+id/tv_price"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:fontFamily="@font/gmarket_sans_bold"
android:textColor="@color/color_eeeeee"
android:textSize="15.3sp"
tools:text="3,300" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:fontFamily="@font/gmarket_sans_light"
android:text=" 원"
android:textColor="@color/color_eeeeee"
android:textSize="15.3sp" />
</LinearLayout>
app:layout_constraintTop_toTopOf="parent"
tools:text="3,300" />
</androidx.constraintlayout.widget.ConstraintLayout>
<TextView