39 lines
1.2 KiB
XML
39 lines
1.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="180dp"
|
|
android:layout_height="40dp"
|
|
android:background="@drawable/bg_loading_dialog"
|
|
android:orientation="horizontal"
|
|
>
|
|
|
|
<LinearLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerInParent="true"
|
|
android:orientation="horizontal"
|
|
>
|
|
|
|
<ProgressBar
|
|
android:layout_width="24dp"
|
|
android:layout_height="24dp"
|
|
android:indeterminateBehavior="repeat"
|
|
android:indeterminateDrawable="@drawable/anim_loading"
|
|
android:indeterminateOnly="true"
|
|
/>
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerInParent="true"
|
|
android:text="@string/login_auth_ing"
|
|
android:textColor="@color/white"
|
|
android:textSize="14sp"
|
|
android:layout_marginLeft="10dp"
|
|
android:layout_gravity="center_vertical"
|
|
/>
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
</RelativeLayout> |