Files
sodalive-android/app/src/main/res/layout/activity_find_password.xml
klaus 7ab2779805 비밀번호 재설정
- 입력창 UI 수정
2025-03-22 05:26:41 +09:00

107 lines
4.9 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">
<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">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginHorizontal="26.7dp"
android:layout_marginTop="40dp"
android:fontFamily="@font/gmarket_sans_bold"
android:gravity="center"
android:lineSpacingExtra="6dp"
android:text="회원가입한 이메일 주소로\n임시 비밀번호를 보내드립니다."
android:textColor="@color/color_eeeeee"
android:textSize="16sp" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginHorizontal="26.7dp"
android:layout_marginTop="40dp"
android:fontFamily="@font/gmarket_sans_medium"
android:gravity="center"
android:lineSpacingExtra="6dp"
android:text="임시 비밀번호로 로그인 후\n마이페이지 > 프로필 설정에서\n비밀번호를 변경하고 이용하세요."
android:textColor="@color/color_909090"
android:textSize="12sp" />
<com.google.android.material.textfield.TextInputLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginHorizontal="26.7dp"
android:layout_marginTop="40dp"
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>
<TextView
android:id="@+id/tv_find_password"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginHorizontal="13.3dp"
android:layout_marginTop="60dp"
android:background="@drawable/bg_round_corner_6_7_3bb9f1"
android:fontFamily="@font/gmarket_sans_bold"
android:gravity="center"
android:paddingVertical="16dp"
android:text="임시 비밀번호 받기"
android:textColor="@color/white"
android:textSize="15sp" />
<TextView
android:id="@+id/tv_service_center"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginTop="93dp"
android:background="@drawable/bg_round_corner_8_transparent_3bb9f1"
android:drawablePadding="13.3dp"
android:paddingHorizontal="18.7dp"
android:paddingVertical="10.7dp"
android:text="고객센터로 문의하기"
android:textColor="@color/color_3bb9f1"
app:drawableStartCompat="@drawable/ic_headphones_blue" />
</LinearLayout>
</ScrollView>
</androidx.constraintlayout.widget.ConstraintLayout>