12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <?xml version="1.0" encoding="utf-8"?>
- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="#66000000" >
- <ProgressBar
- android:id="@+id/progressBar1"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerInParent="true"
- android:indeterminate="false"
- android:indeterminateDrawable="@anim/hisense_loading_anim"
- android:indeterminateDuration="1000" />
- <TextView
- android:id="@+id/text1"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_below="@+id/progressBar1"
- android:layout_centerHorizontal="true"
- android:layout_marginLeft="@dimen/dimen_150"
- android:layout_marginRight="@dimen/dimen_150"
- android:layout_marginTop="@dimen/dimen_66"
- android:textColor="#aeadad"
- android:textSize="@dimen/dimen_48" />
- <FrameLayout
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerHorizontal="true"
- android:layout_centerVertical="true" >
- <TextView
- android:id="@+id/timeText"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:gravity="center"
- android:textColor="#aeadad"
- android:textSize="@dimen/dimen_60" />
- </FrameLayout>
- </RelativeLayout>
|