19 lines
690 B
XML
19 lines
690 B
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:gravity="center">
|
||
|
|
||
|
<com.wang.avi.AVLoadingIndicatorView
|
||
|
android:id="@+id/avi"
|
||
|
style="@style/AVLoadingIndicatorView"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_centerInParent="true"
|
||
|
android:visibility="visible"
|
||
|
|
||
|
app:indicatorColor="@color/blue_337cf5"
|
||
|
app:indicatorName="BallTrianglePathIndicator" />
|
||
|
|
||
|
</LinearLayout>
|