2011-07-03 12:31:55 -04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2011-07-08 06:52:40 -04:00
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2011-11-23 10:55:34 -05:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical" >
|
2011-07-03 12:31:55 -04:00
|
|
|
|
2011-11-23 10:55:34 -05:00
|
|
|
<ScrollView
|
|
|
|
android:id="@+id/scrollView1"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_above="@+id/controls_group" >
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/status_message"
|
2011-07-08 06:52:40 -04:00
|
|
|
android:layout_width="fill_parent"
|
2011-11-23 10:55:34 -05:00
|
|
|
android:layout_height="wrap_content"
|
2011-07-08 06:52:40 -04:00
|
|
|
android:layout_marginTop="20dp"
|
|
|
|
android:gravity="center_horizontal"
|
2011-11-23 10:55:34 -05:00
|
|
|
android:textSize="10dp"
|
|
|
|
android:paddingBottom="6dip" />
|
|
|
|
</ScrollView>
|
2011-07-08 06:52:40 -04:00
|
|
|
|
2011-11-23 10:55:34 -05:00
|
|
|
<RelativeLayout
|
|
|
|
android:id="@+id/controls_group"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="158dp"
|
|
|
|
android:layout_centerHorizontal="true"
|
|
|
|
android:layout_marginBottom="10dp"
|
|
|
|
android:layout_alignParentBottom="true"
|
|
|
|
android:orientation="vertical" >
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/linearLayout1"
|
2011-08-20 10:27:42 -04:00
|
|
|
android:layout_width="fill_parent"
|
2011-07-08 06:52:40 -04:00
|
|
|
android:layout_height="wrap_content"
|
2011-11-23 10:55:34 -05:00
|
|
|
android:layout_alignParentBottom="true"
|
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
android:gravity="center"
|
|
|
|
android:orientation="horizontal" >
|
2011-07-16 08:51:29 -04:00
|
|
|
|
2011-11-23 10:55:34 -05:00
|
|
|
<Button
|
|
|
|
android:id="@+id/autoconfig_button_cancel"
|
2011-07-16 08:51:29 -04:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2011-11-23 10:55:34 -05:00
|
|
|
android:text="@string/cancel_action" />
|
2011-07-16 08:51:29 -04:00
|
|
|
|
2011-11-23 10:55:34 -05:00
|
|
|
<Button
|
|
|
|
android:id="@+id/autoconfig_button_next"
|
2011-07-16 08:51:29 -04:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2011-11-23 10:55:34 -05:00
|
|
|
android:drawableRight="@drawable/button_indicator_next"
|
|
|
|
android:text="@string/next_action" />
|
|
|
|
</LinearLayout>
|
2011-07-16 08:51:29 -04:00
|
|
|
|
2011-11-23 10:55:34 -05:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/autoconfig_warning"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_above="@+id/linearLayout1"
|
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
android:layout_marginBottom="20dp"
|
|
|
|
android:gravity="center"
|
|
|
|
android:text="@string/account_setup_autoconfig_unsafe_connection"
|
|
|
|
android:textColor="#C44141"
|
|
|
|
android:textStyle="bold" />
|
2011-08-20 10:27:42 -04:00
|
|
|
|
2011-11-23 10:55:34 -05:00
|
|
|
<ProgressBar
|
|
|
|
android:id="@+id/autoconfig_progress"
|
|
|
|
style="@android:style/Widget.ProgressBar.Large.Inverse"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignBottom="@+id/autoconfig_warning"
|
|
|
|
android:layout_centerHorizontal="true" />
|
|
|
|
</RelativeLayout>
|
2011-07-03 12:31:55 -04:00
|
|
|
|
2011-07-08 06:52:40 -04:00
|
|
|
</RelativeLayout>
|