mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-01 08:05:08 -04:00
b188630eb4
Fixes issue 1948
38 lines
1.3 KiB
XML
38 lines
1.3 KiB
XML
<?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">
|
|
<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">
|
|
<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="6dip"
|
|
android:focusable="true"
|
|
/>
|
|
<ProgressBar
|
|
android:id="@+id/progress"
|
|
android:layout_height="wrap_content"
|
|
android:layout_width="fill_parent"
|
|
style="?android:attr/progressBarStyleHorizontal"
|
|
android:focusable="true" />
|
|
<View
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="0dip"
|
|
android:layout_weight="1" />
|
|
</LinearLayout>
|
|
<include layout="@layout/wizard_cancel" />
|
|
</LinearLayout>
|