상세 화면과 다이얼로그의 하드코딩 텍스트를 문자열 리소스로 이동했습니다. ko/en/ja 리소스 추가 및 기본 시간 표시, 토스트, 공유 문구를 리소스 키로 통일했습니다.
99 lines
3.8 KiB
XML
99 lines
3.8 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="@drawable/bg_round_corner_10_13181b"
|
|
android:orientation="vertical"
|
|
android:paddingHorizontal="16.7dp"
|
|
android:paddingTop="40dp"
|
|
android:paddingBottom="16.7dp">
|
|
|
|
<TextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:fontFamily="@font/gmarket_sans_bold"
|
|
android:gravity="center"
|
|
android:text="@string/screen_audio_content_detail_delete_title"
|
|
android:textColor="@color/color_eeeeee"
|
|
android:textSize="18.3sp" />
|
|
|
|
<TextView
|
|
android:id="@+id/tv_title"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="21.3dp"
|
|
android:fontFamily="@font/gmarket_sans_medium"
|
|
android:gravity="center"
|
|
android:textColor="@color/color_eeeeee"
|
|
android:textSize="13.3sp"
|
|
tools:text="[콘텐츠명]을 삭제하시겠습니까?" />
|
|
|
|
<FrameLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="13.3dp"
|
|
android:background="@drawable/bg_round_corner_6_7_303030"
|
|
android:padding="13.3dp">
|
|
|
|
<TextView
|
|
android:id="@+id/tv_notice"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:drawablePadding="13.3dp"
|
|
android:fontFamily="@font/gmarket_sans_medium"
|
|
android:gravity="center_vertical"
|
|
android:text="@string/screen_audio_content_detail_delete_notice"
|
|
android:textColor="@color/color_eeeeee"
|
|
android:textSize="13.3sp"
|
|
app:drawableStartCompat="@drawable/ic_select" />
|
|
</FrameLayout>
|
|
|
|
<TextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="10.3dp"
|
|
android:fontFamily="@font/gmarket_sans_medium"
|
|
android:gravity="center"
|
|
android:lineSpacingExtra="4dp"
|
|
android:text="@string/screen_audio_content_detail_delete_desc"
|
|
android:textColor="@color/color_dd4500"
|
|
android:textSize="12sp" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="10.7dp"
|
|
android:orientation="horizontal">
|
|
|
|
<TextView
|
|
android:id="@+id/tv_cancel"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginEnd="6.7dp"
|
|
android:layout_weight="1"
|
|
android:background="@drawable/bg_round_corner_10_transparent_3bb9f1"
|
|
android:fontFamily="@font/gmarket_sans_bold"
|
|
android:gravity="center"
|
|
android:paddingVertical="15.7dp"
|
|
android:text="@string/cancel"
|
|
android:textColor="@color/color_3bb9f1"
|
|
android:textSize="18.3sp" />
|
|
|
|
<TextView
|
|
android:id="@+id/tv_confirm"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="6.7dp"
|
|
android:layout_weight="1"
|
|
android:background="@drawable/bg_round_corner_10_3bb9f1"
|
|
android:fontFamily="@font/gmarket_sans_bold"
|
|
android:gravity="center"
|
|
android:paddingVertical="15.7dp"
|
|
android:text="@string/confirm"
|
|
android:textColor="@color/white"
|
|
android:textSize="18.3sp" />
|
|
</LinearLayout>
|
|
</LinearLayout>
|