Skip to content

Commit

Permalink
Design: 졸업예정일 bottom frag 높이 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
kimyujin-com committed Feb 13, 2024
1 parent dde4a01 commit 4680783
Showing 1 changed file with 8 additions and 13 deletions.
21 changes: 8 additions & 13 deletions app/src/main/res/layout/fragment_grad_date_bottom.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<!--<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
<?xml version="1.0" encoding="utf-8"?><!--<FrameLayout 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">
Expand Down Expand Up @@ -72,7 +71,7 @@
<androidx.constraintlayout.widget.ConstraintLayout
android:id="@+id/constraintLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_height="323dp"
android:background="@drawable/white_round_top_border_20"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
Expand Down Expand Up @@ -113,33 +112,29 @@
<NumberPicker
android:id="@+id/np_grad_date_year"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:layout_marginEnd="4dp"
android:layout_height="0dp"
android:selectionDividerHeight="0dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toStartOf="@id/np_grad_date_month"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/v_grad_date_underline" />

<NumberPicker
android:id="@+id/np_grad_date_month"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginStart="4dp"
android:layout_marginTop="8dp"
android:layout_marginEnd="4dp"
android:layout_height="0dp"
android:selectionDividerHeight="0dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toStartOf="@id/np_grad_date_day"
app:layout_constraintStart_toEndOf="@id/np_grad_date_year"
app:layout_constraintTop_toBottomOf="@id/v_grad_date_underline" />

<NumberPicker
android:id="@+id/np_grad_date_day"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginStart="4dp"
android:layout_marginTop="8dp"
android:layout_height="0dp"
android:selectionDividerHeight="0dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toEndOf="@id/np_grad_date_month"
app:layout_constraintTop_toBottomOf="@id/v_grad_date_underline" />
Expand Down

0 comments on commit 4680783

Please sign in to comment.