78 lines
2.8 KiB
XML
78 lines
2.8 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.appcompat.widget.LinearLayoutCompat xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:id="@+id/sud_load_bg"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center_horizontal"
|
|
android:orientation="vertical">
|
|
|
|
<androidx.appcompat.widget.AppCompatImageView
|
|
android:id="@+id/sud_load"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="16dp"
|
|
android:src="@mipmap/sud_load_zh" />
|
|
|
|
<RelativeLayout
|
|
android:layout_width="100dp"
|
|
android:layout_height="100dp"
|
|
android:layout_marginTop="19dp">
|
|
|
|
<ProgressBar
|
|
android:id="@+id/sud_load_bar_double"
|
|
android:layout_width="100dp"
|
|
android:layout_height="100dp"
|
|
android:indeterminateBehavior="repeat"
|
|
android:indeterminateDrawable="@drawable/anim_loading_double"
|
|
android:indeterminateDuration="500"
|
|
android:visibility="gone" />
|
|
|
|
<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>
|
|
|
|
<TextView
|
|
android:id="@+id/sud_activity_tips_text"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="10dp"
|
|
android:layout_marginEnd="10dp"
|
|
android:visibility="gone"
|
|
tools:visibility="visible"
|
|
android:textColor="#333333"
|
|
android:textSize="14sp"
|
|
android:gravity="center"
|
|
android:text="@string/game_dialog_loading_tips_text" />
|
|
|
|
<androidx.appcompat.widget.LinearLayoutCompat
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="20dp"
|
|
android:layout_marginBottom="20dp"
|
|
android:gravity="center_vertical"
|
|
android:orientation="horizontal">
|
|
|
|
<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> |