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"
|
|
|
|
android:orientation="vertical">
|
2009-11-22 19:23:34 -05:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:padding="6dip"
|
|
|
|
android:layout_width="fill_parent">
|
2008-10-27 21:04:44 -04:00
|
|
|
<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"
|
2009-11-16 19:50:59 -05:00
|
|
|
android:paddingBottom="6dip"
|
2010-07-08 08:18:12 -04:00
|
|
|
android:focusable="true"
|
2009-11-16 19:50:59 -05:00
|
|
|
/>
|
2008-10-27 21:04:44 -04:00
|
|
|
<ProgressBar
|
|
|
|
android:id="@+id/progress"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_width="fill_parent"
|
2010-07-08 08:18:12 -04:00
|
|
|
style="?android:attr/progressBarStyleHorizontal"
|
|
|
|
android:focusable="true" />
|
2008-10-27 21:04:44 -04:00
|
|
|
<View
|
|
|
|
android:layout_width="fill_parent"
|
2009-11-12 19:38:26 -05:00
|
|
|
android:layout_height="0dip"
|
2008-10-27 21:04:44 -04:00
|
|
|
android:layout_weight="1" />
|
2009-11-22 19:23:34 -05:00
|
|
|
</LinearLayout>
|
|
|
|
<include layout="@layout/wizard_cancel" />
|
2008-10-27 21:04:44 -04:00
|
|
|
</LinearLayout>
|