35 lines
1.2 KiB
XML
35 lines
1.2 KiB
XML
<?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> |