12345678910111213141516171819202122232425262728293031323334353637 |
- <?xml version="1.0" encoding="utf-8"?>
- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="match_parent"
- android:layout_height="match_parent" >
- <RelativeLayout
- android:layout_width="180dp"
- android:layout_height="180dp"
- android:layout_centerInParent="true"
- android:background="@drawable/fanwei_loading_bg" >
- <LinearLayout
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:layout_alignParentRight="true"
- android:layout_alignParentTop="true"
- android:gravity="center"
- android:orientation="vertical" >
- <ProgressBar
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center_horizontal" />
- <TextView
- android:id="@+id/fan_text_loading"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginTop="10dp"
- android:text="@string/processing"
- android:textColor="#fff"
- android:textSize="16sp" />
- </LinearLayout>
- </RelativeLayout>
- </RelativeLayout>
|