Skip to content

Commit

Permalink
Design: 홈/나만의 다음 계획 layout 높이 동적 설정 #5
Browse files Browse the repository at this point in the history
  • Loading branch information
dkyuuum committed Feb 16, 2024
1 parent d09bfc1 commit 60eec1c
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions app/src/main/res/layout/fragment_home.xml
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@
<androidx.constraintlayout.widget.ConstraintLayout
android:id="@+id/constraintLayout_plan"
android:layout_width="match_parent"
android:layout_height="500dp"
android:layout_height="0dp"
android:layout_marginTop="78dp"
android:background="@drawable/bg_solid_light_blue_top_right_radius_70"
android:paddingBottom="50dp"
Expand Down Expand Up @@ -283,7 +283,6 @@
android:layout_marginTop="31dp"
android:layout_marginEnd="20dp"
android:background="@drawable/bg_solid_white_radius_20"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/tv_plan_title">
Expand Down Expand Up @@ -321,7 +320,7 @@
<androidx.constraintlayout.widget.ConstraintLayout
android:id="@+id/constraintLayout3"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_height="match_parent"
android:layout_marginStart="6dp"
android:layout_marginEnd="6dp"
android:layout_marginBottom="6dp"
Expand Down Expand Up @@ -377,9 +376,8 @@
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recyclerView"
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_height="wrap_content"
android:orientation="horizontal"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/linearLayoutCompat3"
Expand Down

0 comments on commit 60eec1c

Please sign in to comment.