1234567891011121314151617181920212223242526272829303132333435 |
- <?xml version="1.0" encoding="utf-8"?>
- <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:orientation="horizontal" >
- <View
- android:layout_width="250dp"
- android:layout_height="60dp"
- android:background="@drawable/bdp_paycenter_bg_loading" />
- <LinearLayout
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center"
- android:orientation="horizontal" >
- <ProgressBar
- android:id="@+id/bdp_paycenter_loadingImageView"
- android:layout_width="32dp"
- android:layout_height="32dp"
- android:indeterminate="false"
- android:indeterminateDrawable="@drawable/bdp_paycenter_loading_progress" />
- <TextView
- android:id="@+id/bdp_paycenter_tv_loading_msg"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center_vertical"
- android:layout_marginLeft="8dp"
- android:textColor="@color/bdp_gamesdk_white"
- android:textSize="14sp" />
- </LinearLayout>
- </FrameLayout>
|