<?xml version="1.0" encoding="utf-8"?>
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
android:layout_width="fill_parent"
|
android:layout_height="fill_parent"
|
android:orientation="vertical"
|
android:paddingBottom="5dp"
|
android:paddingLeft="10dp"
|
android:paddingRight="10dp"
|
android:paddingTop="5dp">
|
|
<ProgressBar
|
android:id="@+id/progressBar1"
|
android:padding="@dimen/dp_2"
|
style="?android:attr/progressBarStyle"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content" />
|
|
<TextView
|
android:id="@+id/message"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:textSize="13sp"
|
android:layout_marginTop="@dimen/dp_5"
|
android:gravity="center"
|
android:minWidth="60dp"
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
android:textColor="#333333" />
|
|
</LinearLayout>
|