pandorapan/common/src/main/res/layout/view_loading_layout.xml

35 lines
1.2 KiB
XML
Raw Normal View History

2024-02-23 16:07:50 +08:00
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:dots="http://schemas.android.com/apk/res-auto"
android:layout_width="350dp"
android:layout_height="wrap_content"
android:background="@drawable/bg_loding_view">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="20dp"
android:layout_marginBottom="20dp"
android:layout_gravity="center">
<TextView
android:id="@+id/hint"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="ding单"
android:textColor="@color/white"
android:textSize="14sp"
android:textStyle="bold" />
<pl.tajchert.waitingdots.DotsTextView
android:id="@+id/dots"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="@color/white"
android:textSize="24sp"
dots:autoplay="false"
dots:period="1000" />
</LinearLayout>
</FrameLayout>