You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.4 KiB
39 lines
1.4 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/dialog_loading_view"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:gravity="center"
|
|
android:orientation="vertical">
|
|
|
|
<LinearLayout
|
|
android:layout_width="120dp"
|
|
android:layout_height="100dp"
|
|
android:background="@drawable/bg_dialog_loading"
|
|
android:gravity="center"
|
|
android:orientation="vertical"
|
|
android:paddingLeft="21dp"
|
|
android:paddingTop="10dp"
|
|
android:paddingRight="21dp"
|
|
android:paddingBottom="10dp">
|
|
|
|
<ProgressBar
|
|
android:id="@+id/progressBar"
|
|
android:layout_width="35dp"
|
|
android:layout_height="35dp"
|
|
android:layout_gravity="center_horizontal"
|
|
android:indeterminateBehavior="repeat"
|
|
android:indeterminateDrawable="@drawable/loading_dialog_progress_bar"
|
|
android:indeterminateOnly="true" />
|
|
|
|
<TextView
|
|
android:id="@+id/tvLoadingTips"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="15dp"
|
|
android:text="@string/loading"
|
|
android:textColor="@android:color/white"
|
|
android:textSize="15sp" />
|
|
</LinearLayout>
|
|
|
|
</LinearLayout> |