Skip to content

Commit

Permalink
[CHORE/#7] match_parent -> 0dp 설정
Browse files Browse the repository at this point in the history
  • Loading branch information
chattymin committed Dec 31, 2023
1 parent 19cc191 commit 6048c07
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions presentation/src/main/res/layout/activity_login.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

<TextView
android:id="@+id/tv_sign_in_title"
android:layout_width="match_parent"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginHorizontal="16dp"
android:layout_marginBottom="8dp"
Expand All @@ -39,7 +39,7 @@

<ImageView
android:id="@+id/btn_sign_in"
android:layout_width="match_parent"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginHorizontal="16dp"
android:src="@drawable/img_sign_in_kakao_button"
Expand All @@ -50,7 +50,7 @@

<TextView
android:id="@+id/tv_sign_in_terms"
android:layout_width="match_parent"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginHorizontal="16dp"
android:layout_marginTop="12dp"
Expand All @@ -59,9 +59,9 @@
android:lineHeight="42dp"
android:text="@string/sign_in_tv_terms"
android:textColor="@color/white"
app:layout_constraintTop_toBottomOf="@id/btn_sign_in"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent" />
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/btn_sign_in" />

</androidx.constraintlayout.widget.ConstraintLayout>
</layout>

0 comments on commit 6048c07

Please sign in to comment.