20 lines
1.1 KiB
XML
20 lines
1.1 KiB
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:background="@color/transparent"
|
||
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
||
|
|
|
||
|
|
<app.dinus.com.loadingdrawable.LoadingView
|
||
|
|
android:id="@+id/cool_wait_view"
|
||
|
|
android:layout_width="@dimen/dp_100"
|
||
|
|
android:layout_height="@dimen/dp_100"
|
||
|
|
android:visibility="visible"
|
||
|
|
app:loading_renderer="CoolWaitLoadingRenderer"
|
||
|
|
app:layout_constraintTop_toTopOf="parent"
|
||
|
|
app:layout_constraintStart_toStartOf="parent"
|
||
|
|
app:layout_constraintEnd_toEndOf="parent"
|
||
|
|
app:layout_constraintBottom_toBottomOf="parent"/>
|
||
|
|
|
||
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|