190 lines
8.7 KiB
XML
190 lines
8.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
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="0dp"
|
|
android:layout_height="0dp"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toBottomOf="@+id/toolbar">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical">
|
|
|
|
<com.google.android.material.textfield.TextInputLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginHorizontal="13.3dp"
|
|
android:layout_marginTop="20dp"
|
|
android:background="@drawable/bg_round_corner_6_7_cc333333"
|
|
android:hint=""
|
|
android:textColorHint="@color/color_777777"
|
|
app:boxBackgroundMode="filled"
|
|
app:boxStrokeWidth="0dp"
|
|
app:boxStrokeWidthFocused="0dp"
|
|
app:hintEnabled="false"
|
|
app:hintTextColor="@color/color_777777">
|
|
|
|
<com.google.android.material.textfield.TextInputEditText
|
|
android:id="@+id/et_email"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="@android:color/transparent"
|
|
android:fontFamily="@font/gmarket_sans_medium"
|
|
android:hint="이메일"
|
|
android:importantForAutofill="no"
|
|
android:inputType="textEmailAddress"
|
|
android:paddingVertical="18dp"
|
|
android:textColor="@color/color_eeeeee"
|
|
android:textColorHint="@color/color_777777"
|
|
android:textSize="15sp" />
|
|
</com.google.android.material.textfield.TextInputLayout>
|
|
|
|
<com.google.android.material.textfield.TextInputLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginHorizontal="13.3dp"
|
|
android:layout_marginTop="16dp"
|
|
android:background="@drawable/bg_round_corner_6_7_cc333333"
|
|
android:hint=""
|
|
android:textColorHint="@color/color_777777"
|
|
app:boxBackgroundMode="filled"
|
|
app:boxStrokeWidth="0dp"
|
|
app:boxStrokeWidthFocused="0dp"
|
|
app:endIconMode="password_toggle"
|
|
app:hintEnabled="false"
|
|
app:hintTextColor="@color/color_777777">
|
|
|
|
<com.google.android.material.textfield.TextInputEditText
|
|
android:id="@+id/et_password"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="@android:color/transparent"
|
|
android:fontFamily="@font/gmarket_sans_medium"
|
|
android:hint="비밀번호"
|
|
android:imeOptions="actionDone"
|
|
android:importantForAutofill="no"
|
|
android:inputType="textPassword"
|
|
android:paddingVertical="18dp"
|
|
android:textColor="@color/color_eeeeee"
|
|
android:textColorHint="@color/color_777777"
|
|
android:textSize="15sp" />
|
|
</com.google.android.material.textfield.TextInputLayout>
|
|
|
|
<RelativeLayout
|
|
android:id="@+id/rl_terms_of_service"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginHorizontal="13.3dp"
|
|
android:layout_marginTop="20dp">
|
|
|
|
<ImageView
|
|
android:id="@+id/iv_terms_of_service"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentStart="true"
|
|
android:layout_centerVertical="true"
|
|
android:contentDescription="@null"
|
|
android:padding="10dp"
|
|
android:src="@drawable/ic_select" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerVertical="true"
|
|
android:layout_marginStart="10dp"
|
|
android:layout_toEndOf="@+id/iv_terms_of_service">
|
|
|
|
<TextView
|
|
android:id="@+id/tv_terms_of_service"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:fontFamily="@font/gmarket_sans_medium"
|
|
android:text="이용약관"
|
|
android:textColor="@color/color_eeeeee"
|
|
android:textSize="12sp" />
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="6.7dp"
|
|
android:fontFamily="@font/gmarket_sans_medium"
|
|
android:text="(필수)"
|
|
android:textColor="@color/color_3bb9f1"
|
|
android:textSize="12sp" />
|
|
</LinearLayout>
|
|
</RelativeLayout>
|
|
|
|
<RelativeLayout
|
|
android:id="@+id/rl_privacy_policy"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginHorizontal="13.3dp"
|
|
android:layout_marginTop="5dp">
|
|
|
|
<ImageView
|
|
android:id="@+id/iv_privacy_policy"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentStart="true"
|
|
android:layout_centerVertical="true"
|
|
android:contentDescription="@null"
|
|
android:padding="10dp"
|
|
android:src="@drawable/ic_select" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerVertical="true"
|
|
android:layout_marginStart="10dp"
|
|
android:layout_toEndOf="@+id/iv_privacy_policy">
|
|
|
|
<TextView
|
|
android:id="@+id/tv_privacy_policy"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:fontFamily="@font/gmarket_sans_medium"
|
|
android:text="개인정보수집 및 이용동의"
|
|
android:textColor="@color/color_eeeeee"
|
|
android:textSize="12sp" />
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="6.7dp"
|
|
android:fontFamily="@font/gmarket_sans_medium"
|
|
android:text="(필수)"
|
|
android:textColor="@color/color_3bb9f1"
|
|
android:textSize="12sp" />
|
|
</LinearLayout>
|
|
</RelativeLayout>
|
|
|
|
<TextView
|
|
android:id="@+id/tv_sign_up"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginHorizontal="13.3dp"
|
|
android:layout_marginTop="26.7dp"
|
|
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>
|
|
</ScrollView>
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|