Skip to content

Commit

Permalink
[CHORE/#6] 자간 조정 및 로그아웃 문구 일관성 반영
Browse files Browse the repository at this point in the history
  • Loading branch information
b1urrrr committed May 5, 2023
1 parent 6a5e021 commit 486b6e6
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
8 changes: 6 additions & 2 deletions app/src/main/res/layout/activity_login.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,7 @@
<androidx.constraintlayout.widget.ConstraintLayout
android:id="@+id/layout_login"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingHorizontal="40dp">
android:layout_height="match_parent">

<TextView
android:id="@+id/tv_login_welcome_msg"
Expand All @@ -33,6 +32,7 @@
android:id="@+id/tv_login_id_label"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginHorizontal="40dp"
android:layout_marginTop="50dp"
android:text="@string/login_id_label"
android:textAppearance="?attr/textAppearanceHeadlineSmall"
Expand All @@ -44,6 +44,7 @@
android:id="@+id/et_login_id"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginHorizontal="40dp"
android:layout_marginTop="2dp"
android:hint="@string/login_id_hint"
android:imeOptions="actionNext"
Expand All @@ -59,6 +60,7 @@
android:id="@+id/tv_login_pwd_label"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginHorizontal="40dp"
android:layout_marginTop="40dp"
android:text="@string/login_pwd_label"
android:textAppearance="@style/TextAppearance.GoSopt.HeadlineSmall"
Expand All @@ -70,6 +72,7 @@
android:id="@+id/et_login_pwd"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginHorizontal="40dp"
android:layout_marginTop="2dp"
android:hint="@string/login_pwd_hint"
android:imeOptions="actionDone"
Expand Down Expand Up @@ -103,6 +106,7 @@
android:id="@+id/flow_login_sign_buttons"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginHorizontal="40dp"
android:layout_marginBottom="16dp"
android:orientation="horizontal"
app:constraint_referenced_ids="btn_login_login,btn_login_signup"
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -59,5 +59,5 @@
<string name="logout_dialog_question">로그아웃 하시겠습니까?</string>
<string name="logout_dialog_description">모든 회원 정보가 삭제됩니다.</string>
<string name="logout_dialog_cancel">CANCEL</string>
<string name="logout_dialog_logout">LOGOUT</string>
<string name="logout_dialog_logout">LOG OUT</string>
</resources>

0 comments on commit 486b6e6

Please sign in to comment.