39 lines
1.3 KiB
XML
39 lines
1.3 KiB
XML
|
|
<?xml version="1.0" encoding="utf-8" ?>
|
||
|
|
<androidx.cardview.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||
|
|
android:id="@+id/card_view_loading_dialog"
|
||
|
|
android:layout_width="200dp"
|
||
|
|
android:layout_height="144dp"
|
||
|
|
android:backgroundTint="@color/white"
|
||
|
|
android:paddingLeft="24dp"
|
||
|
|
android:paddingRight="24dp"
|
||
|
|
app:cardCornerRadius="4dp">
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:gravity="center"
|
||
|
|
android:orientation="vertical">
|
||
|
|
|
||
|
|
<ProgressBar
|
||
|
|
android:id="@+id/progress_bar"
|
||
|
|
android:layout_width="48dp"
|
||
|
|
android:layout_height="48dp" />
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/tv_message"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:layout_marginTop="4dp"
|
||
|
|
android:ellipsize="end"
|
||
|
|
android:gravity="center_horizontal"
|
||
|
|
android:maxLines="2"
|
||
|
|
android:text="@string/loading"
|
||
|
|
android:textColor="@color/colorTextTitle"
|
||
|
|
android:textSize="14sp" />
|
||
|
|
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
</androidx.cardview.widget.CardView>
|