65 lines
2.3 KiB
XML
65 lines
2.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.appcompat.widget.LinearLayoutCompat xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:orientation="vertical"
|
|
android:id="@+id/sud_load_bg"
|
|
android:gravity="center_horizontal"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<androidx.appcompat.widget.AppCompatImageView
|
|
android:id="@+id/sud_load"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:src="@mipmap/sud_load_zh"
|
|
android:layout_marginTop="16dp"/>
|
|
|
|
<RelativeLayout
|
|
android:layout_marginTop="19dp"
|
|
android:layout_width="100dp"
|
|
android:layout_height="100dp">
|
|
|
|
<ProgressBar
|
|
android:id="@+id/sud_load_bar_double"
|
|
android:layout_width="100dp"
|
|
android:layout_height="100dp"
|
|
android:visibility="gone"
|
|
android:indeterminateBehavior="repeat"
|
|
android:indeterminateDrawable="@drawable/anim_loading_double"
|
|
android:indeterminateDuration="500"/>
|
|
|
|
<ProgressBar
|
|
android:id="@+id/sud_load_bar_multiple"
|
|
android:layout_width="100dp"
|
|
android:layout_height="100dp"
|
|
android:indeterminateBehavior="repeat"
|
|
android:indeterminateDrawable="@drawable/anim_loading_multiple"
|
|
android:indeterminateDuration="500"/>
|
|
|
|
</RelativeLayout>
|
|
|
|
|
|
<androidx.appcompat.widget.LinearLayoutCompat
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:layout_marginTop="20dp"
|
|
android:layout_marginBottom="20dp"
|
|
android:gravity="center_vertical">
|
|
|
|
<androidx.appcompat.widget.AppCompatImageView
|
|
android:id="@+id/sud_load_skip"
|
|
android:layout_width="100dp"
|
|
android:layout_height="40dp"
|
|
android:layout_marginEnd="20dp"
|
|
android:src="@mipmap/sud_load_skip_zh"/>
|
|
|
|
|
|
<androidx.appcompat.widget.AppCompatImageView
|
|
android:id="@+id/sud_load_again"
|
|
android:layout_width="100dp"
|
|
android:layout_height="40dp"
|
|
android:src="@mipmap/sub_again_zh"/>
|
|
|
|
</androidx.appcompat.widget.LinearLayoutCompat>
|
|
|
|
</androidx.appcompat.widget.LinearLayoutCompat> |