2008-10-27 21:04:44 -04:00
|
|
|
<?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"
|
2009-04-19 05:10:32 -04:00
|
|
|
|
|
|
|
android:padding="6dip"
|
2008-10-27 21:04:44 -04:00
|
|
|
android:orientation="vertical">
|
|
|
|
<View
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="100sp" />
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/message"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:gravity="center_horizontal"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
|
|
|
android:textColor="?android:attr/textColorPrimary"
|
|
|
|
android:paddingBottom="6px" />
|
|
|
|
<ProgressBar
|
|
|
|
android:id="@+id/progress"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
style="?android:attr/progressBarStyleHorizontal" />
|
|
|
|
<View
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="0px"
|
|
|
|
android:layout_weight="1" />
|
|
|
|
<RelativeLayout
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="54px"
|
2009-04-19 05:10:32 -04:00
|
|
|
|
|
|
|
>
|
2008-10-27 21:04:44 -04:00
|
|
|
<Button
|
|
|
|
android:id="@+id/cancel"
|
|
|
|
android:text="@string/cancel_action"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:minWidth="@dimen/button_minWidth"
|
|
|
|
android:layout_centerVertical="true" />
|
|
|
|
</RelativeLayout>
|
|
|
|
</LinearLayout>
|