Skip to content

Commit

Permalink
#6 remain_ui/남은 ui : 로딩 화면
Browse files Browse the repository at this point in the history
 - gif 적용 및 dp 추가
  • Loading branch information
likppi10 committed Sep 12, 2022
1 parent 974976e commit 2538102
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
15 changes: 8 additions & 7 deletions app/src/main/res/layout/activity_loading.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,28 +14,30 @@
android:id="@+id/station_textview"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginStart="@dimen/dp_size_32"
android:fontFamily="@font/pretendard_semibold"
android:gravity="center"
android:text="@string/ex_station_text"
android:textColor="@color/blue_900"
android:textSize="@dimen/sp_size_22"
app:layout_constraintBottom_toTopOf="@+id/many_live_textview"
app:layout_constraintStart_toStartOf="@+id/load_view"
app:layout_constraintEnd_toStartOf="@+id/worker_is_textview"
app:layout_constraintHorizontal_bias="0.5"
app:layout_constraintStart_toStartOf="@+id/many_live_textview"
/>

<TextView
android:id="@+id/worker_is_textview"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginEnd="@dimen/dp_size_16"
android:fontFamily="@font/pretendard_medium"
android:gravity="center"
android:text="@string/worker_is_text"
android:textColor="@color/black"
android:textSize="@dimen/sp_size_22"
app:layout_constraintBottom_toTopOf="@+id/many_live_textview"
app:layout_constraintEnd_toEndOf="@+id/load_view"
app:layout_constraintEnd_toEndOf="@+id/many_live_textview"
app:layout_constraintHorizontal_bias="0.5"
app:layout_constraintStart_toEndOf="@+id/station_textview"
/>

<TextView
Expand All @@ -56,12 +58,11 @@

<ImageView
android:id="@+id/load_view"
android:layout_width="@dimen/dp_size_240"
android:layout_height="@dimen/dp_size_240"
android:layout_width="match_parent"
android:layout_height="@dimen/dp_size_500"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
/>

</androidx.constraintlayout.widget.ConstraintLayout>
Expand Down
1 change: 1 addition & 0 deletions app/src/main/res/values/dimen.xml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@
<dimen name="dp_size_120">120dp</dimen>
<dimen name="dp_size_240">240dp</dimen>
<dimen name="dp_size_400">400dp</dimen>
<dimen name="dp_size_500">500dp</dimen>

<!-- margin size -->
<dimen name="margin_size_2">2dp</dimen>
Expand Down

0 comments on commit 2538102

Please sign in to comment.