Skip to content

Commit

Permalink
[FIX/#10] lottie 이미지 크기 조정
Browse files Browse the repository at this point in the history
  • Loading branch information
b1urrrr committed Jun 2, 2023
1 parent c7c5c39 commit 9042663
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions app/src/main/res/layout/fragment_loading_dialog.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,24 @@
</data>

<androidx.constraintlayout.widget.ConstraintLayout
android:id="@+id/layout_loading"
android:layout_width="match_parent"
android:layout_height="match_parent">

<androidx.constraintlayout.widget.ConstraintLayout
android:id="@+id/layout_loading"
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_toTopOf="parent" />

<com.airbnb.lottie.LottieAnimationView
android:id="@+id/lottie_loading"
android:layout_width="0dp"
android:layout_width="200dp"
android:layout_height="0dp"
android:layout_margin="100dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintDimensionRatio="1:1"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
Expand Down

0 comments on commit 9042663

Please sign in to comment.