1234567891011121314151617181920212223242526272829303132 |
- <?xml version="1.0" encoding="utf-8"?>
- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:orientation="vertical" android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@color/ej_transparent">
- <LinearLayout
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:orientation="vertical"
- android:layout_centerInParent="true">
- <ProgressBar
- android:id="@+id/ej_common_progress_dialog_pb"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center"
- android:indeterminateTint="@color/ej_common_progress"
- android:indeterminateBehavior="repeat"
- android:indeterminateDrawable="@drawable/ej_anim_loading"/>
- <TextView
- android:id="@+id/ej_common_progress_dialog_msg_tv"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:textSize="@dimen/sp_12"
- android:textColor="@color/ej_font_black"
- android:layout_marginTop="@dimen/dp_5"/>
- </LinearLayout>
- </RelativeLayout>
|