|
@@ -1,31 +1,37 @@
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
-<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
+<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="match_parent"
|
|
|
- android:background="@drawable/bg_game_loading"
|
|
|
+ android:background="@mipmap/icon_game_loading_bg"
|
|
|
tools:ignore="ResourceName">
|
|
|
|
|
|
<androidx.appcompat.widget.AppCompatImageView
|
|
|
android:id="@+id/loadingImage"
|
|
|
- android:layout_width="@dimen/divider_360px"
|
|
|
- android:layout_height="@dimen/divider_416px"
|
|
|
- android:layout_marginTop="@dimen/divider_243px"
|
|
|
- app:layout_constraintEnd_toEndOf="parent"
|
|
|
- app:layout_constraintStart_toStartOf="parent"
|
|
|
- app:layout_constraintTop_toTopOf="parent" />
|
|
|
+ android:layout_width="@dimen/divider_834px"
|
|
|
+ android:layout_height="@dimen/divider_667px"
|
|
|
+ android:layout_gravity="center"
|
|
|
+ android:scaleType="centerInside" />
|
|
|
|
|
|
- <ProgressBar
|
|
|
- android:id="@+id/progressBar"
|
|
|
- style="?android:attr/progressBarStyleHorizontal"
|
|
|
- android:layout_width="@dimen/divider_527px"
|
|
|
- android:layout_height="@dimen/divider_20px"
|
|
|
- android:layout_marginTop="@dimen/divider_41px"
|
|
|
- android:indeterminate="false"
|
|
|
- android:max="3"
|
|
|
- android:progressDrawable="@drawable/bg_game_progressbar_selector"
|
|
|
- app:layout_constraintEnd_toEndOf="parent"
|
|
|
- app:layout_constraintStart_toStartOf="parent"
|
|
|
- app:layout_constraintTop_toBottomOf="@+id/loadingImage" />
|
|
|
-</androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
+ <androidx.constraintlayout.widget.ConstraintLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:layout_marginBottom="@dimen/divider_45px">
|
|
|
+
|
|
|
+ <ProgressBar
|
|
|
+ android:id="@+id/progressBar"
|
|
|
+ style="?android:attr/progressBarStyleHorizontal"
|
|
|
+ android:layout_width="@dimen/divider_527px"
|
|
|
+ android:layout_height="@dimen/divider_20px"
|
|
|
+ android:indeterminate="false"
|
|
|
+ android:max="3"
|
|
|
+ android:progressDrawable="@drawable/bg_game_progressbar_selector"
|
|
|
+ app:layout_constraintBottom_toBottomOf="parent"
|
|
|
+ app:layout_constraintEnd_toEndOf="parent"
|
|
|
+ app:layout_constraintStart_toStartOf="parent" />
|
|
|
+
|
|
|
+ </androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
+
|
|
|
+
|
|
|
+</FrameLayout>
|