Files
sodalive-android/app/src/main/res/layout/activity_can_coupon.xml

129 lines
6.2 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/black"
android:orientation="vertical">
<include
android:id="@+id/toolbar"
layout="@layout/detail_toolbar" />
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="13.3dp">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:fontFamily="@font/gmarket_sans_bold"
android:text="쿠폰번호 입력"
android:textColor="@color/color_eeeeee"
android:textSize="16.7sp" />
<EditText
android:id="@+id/et_coupon_number"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="13.3dp"
android:background="@drawable/bg_round_corner_6_7_222222"
android:fontFamily="@font/gmarket_sans_medium"
android:hint="쿠폰번호를 입력해 주세요"
android:importantForAutofill="no"
android:inputType="textCapCharacters"
android:maxEms="12"
android:paddingHorizontal="13.3dp"
android:paddingVertical="17dp"
android:textColor="@color/color_eeeeee"
android:textColorHint="@color/color_777777"
android:textCursorDrawable="@drawable/edit_text_cursor"
android:textSize="13.3sp"
android:theme="@style/EditTextStyle"
tools:ignore="LabelFor,TextFields" />
<TextView
android:id="@+id/tv_registration"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="21.3dp"
android:background="@drawable/bg_round_corner_10_3bb9f1"
android:fontFamily="@font/gmarket_sans_bold"
android:gravity="center"
android:paddingVertical="16dp"
android:text="등록하기"
android:textColor="@color/white"
android:textSize="18.3sp" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="21.3dp"
android:background="@drawable/bg_round_corner_6_7_13181b"
android:orientation="vertical"
android:paddingHorizontal="13.3dp"
android:paddingVertical="26.7dp">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:fontFamily="@font/gmarket_sans_bold"
android:text="[등록 및 사용안내]"
android:textColor="@color/color_eeeeee"
android:textSize="13.3sp" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:fontFamily="@font/gmarket_sans_medium"
android:lineSpacingExtra="5sp"
android:paddingHorizontal="10dp"
android:text="- 공백없이 쿠폰번호 12자리를 입력해주세요.\n- 충전된 캔 또는 포인트는 해당 충전현황에서 확인할 수 있습니다.\n- 쿠폰으로 충전된 캔은 사용 전까지 소멸되지 않으며, 포인트는 충전 후 72시간 이내에 사용하지 않으면 자동 소멸됩니다."
android:textColor="@color/color_bbbbbb"
android:textSize="13.3sp" />
<FrameLayout
android:layout_width="match_parent"
android:layout_height="1dp"
android:layout_marginVertical="26.7dp"
android:background="@color/color_555555" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:fontFamily="@font/gmarket_sans_bold"
android:text="[주의사항]"
android:textColor="@color/color_eeeeee"
android:textSize="13.3sp" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:fontFamily="@font/gmarket_sans_medium"
android:lineSpacingExtra="5sp"
android:paddingHorizontal="10dp"
android:text="- 이벤트 쿠폰을 통해 충전한 캔이나 포인트는 환불되지 않습니다.\n- 쿠폰은 상업적 용도로 사용하거나 매매할 수 없습니다.\n- 한번 등록한 쿠폰은 재사용이 불가합니다.\n- 연령 제한 정책에 따라 쿠폰이용은 본인인증한 회원만 이용 가능합니다."
android:textColor="@color/color_bbbbbb"
android:textSize="13.3sp" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="13.3dp"
android:fontFamily="@font/gmarket_sans_medium"
android:text="※ 쿠폰 등록 및 이용에 문제가 발생한 경우 '고객센터'로 문의주시기 바랍니다."
android:textColor="@color/color_eeeeee"
android:textSize="13.3sp" />
</LinearLayout>
</LinearLayout>
</ScrollView>
</LinearLayout>