|
|
|
@ -2,10 +2,20 @@ |
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" |
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" |
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto" |
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto" |
|
|
|
xmlns:tools="http://schemas.android.com/tools" |
|
|
|
xmlns:tools="http://schemas.android.com/tools" |
|
|
|
android:layout_width="256dp" |
|
|
|
android:layout_width="wrap_content" |
|
|
|
android:layout_height="128dp" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:layout_gravity="center" |
|
|
|
android:layout_gravity="center" |
|
|
|
android:background="@color/colorPrimary"> |
|
|
|
android:background="@android:color/transparent" |
|
|
|
|
|
|
|
android:elevation="4dp"> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<View |
|
|
|
|
|
|
|
android:layout_width="256dp" |
|
|
|
|
|
|
|
android:layout_height="120dp" |
|
|
|
|
|
|
|
android:background="@drawable/rectangle_rounded_dark" |
|
|
|
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent" |
|
|
|
|
|
|
|
app:layout_constraintEnd_toEndOf="parent" |
|
|
|
|
|
|
|
app:layout_constraintStart_toStartOf="parent" |
|
|
|
|
|
|
|
app:layout_constraintTop_toTopOf="parent" /> |
|
|
|
|
|
|
|
|
|
|
|
<androidx.core.widget.ContentLoadingProgressBar |
|
|
|
<androidx.core.widget.ContentLoadingProgressBar |
|
|
|
android:id="@+id/progressBar" |
|
|
|
android:id="@+id/progressBar" |
|
|
|
@ -26,15 +36,14 @@ |
|
|
|
android:layout_width="wrap_content" |
|
|
|
android:layout_width="wrap_content" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:layout_marginStart="8dp" |
|
|
|
android:layout_marginStart="8dp" |
|
|
|
android:layout_marginTop="16dp" |
|
|
|
android:layout_marginTop="8dp" |
|
|
|
android:layout_marginEnd="8dp" |
|
|
|
android:layout_marginEnd="8dp" |
|
|
|
android:layout_marginBottom="8dp" |
|
|
|
android:layout_marginBottom="8dp" |
|
|
|
android:fontFamily="@font/roboto" |
|
|
|
android:fontFamily="@font/roboto" |
|
|
|
android:textSize="16sp" |
|
|
|
|
|
|
|
android:text="@string/calculating_please_wait_" |
|
|
|
android:text="@string/calculating_please_wait_" |
|
|
|
|
|
|
|
android:textSize="16sp" |
|
|
|
app:layout_constraintBottom_toBottomOf="parent" |
|
|
|
app:layout_constraintBottom_toBottomOf="parent" |
|
|
|
app:layout_constraintEnd_toEndOf="parent" |
|
|
|
app:layout_constraintEnd_toEndOf="parent" |
|
|
|
app:layout_constraintHorizontal_bias="0.5" |
|
|
|
|
|
|
|
app:layout_constraintStart_toStartOf="parent" |
|
|
|
app:layout_constraintStart_toStartOf="parent" |
|
|
|
app:layout_constraintTop_toBottomOf="@+id/progressBar" |
|
|
|
app:layout_constraintTop_toBottomOf="@+id/progressBar" |
|
|
|
app:layout_constraintVertical_chainStyle="packed" /> |
|
|
|
app:layout_constraintVertical_chainStyle="packed" /> |
|
|
|
|