1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-11-30 13:12:25 -05:00

Clean up indentation

White space changes only.
This commit is contained in:
Joe Steele 2014-07-13 01:09:23 -04:00
parent cf718780f6
commit 008891a375

View File

@ -5,23 +5,26 @@
android:layout_height="fill_parent" android:layout_height="fill_parent"
android:layout_width="fill_parent"> android:layout_width="fill_parent">
<ScrollView <ScrollView
android:layout_width="fill_parent" android:layout_width="fill_parent"
android:layout_height="0dp" android:layout_height="0dp"
android:layout_weight="1" android:layout_weight="1"
android:padding="6dip" android:padding="6dip"
android:fadingEdge="none" android:fadingEdge="none"
android:scrollbarStyle="outsideInset"> android:scrollbarStyle="outsideInset">
<LinearLayout <LinearLayout
android:layout_width="fill_parent" android:layout_width="fill_parent"
android:layout_height="fill_parent" android:layout_height="fill_parent"
android:orientation="vertical"> android:orientation="vertical">
<TextView <TextView
android:text="@string/account_setup_outgoing_smtp_server_label" android:text="@string/account_setup_outgoing_smtp_server_label"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_width="fill_parent" android:layout_width="fill_parent"
android:textAppearance="?android:attr/textAppearanceSmall" android:textAppearance="?android:attr/textAppearanceSmall"
android:textColor="?android:attr/textColorPrimary" /> android:textColor="?android:attr/textColorPrimary" />
<EditText <EditText
android:id="@+id/account_server" android:id="@+id/account_server"
android:singleLine="true" android:singleLine="true"
@ -29,23 +32,27 @@
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_width="fill_parent" android:layout_width="fill_parent"
android:contentDescription="@string/account_setup_outgoing_smtp_server_label" /> android:contentDescription="@string/account_setup_outgoing_smtp_server_label" />
<TextView <TextView
android:text="@string/account_setup_outgoing_security_label" android:text="@string/account_setup_outgoing_security_label"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_width="fill_parent" android:layout_width="fill_parent"
android:textAppearance="?android:attr/textAppearanceSmall" android:textAppearance="?android:attr/textAppearanceSmall"
android:textColor="?android:attr/textColorPrimary" /> android:textColor="?android:attr/textColorPrimary" />
<Spinner <Spinner
android:id="@+id/account_security_type" android:id="@+id/account_security_type"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_width="fill_parent" android:layout_width="fill_parent"
android:contentDescription="@string/account_setup_outgoing_security_label" /> android:contentDescription="@string/account_setup_outgoing_security_label" />
<TextView <TextView
android:text="@string/account_setup_outgoing_port_label" android:text="@string/account_setup_outgoing_port_label"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_width="fill_parent" android:layout_width="fill_parent"
android:textAppearance="?android:attr/textAppearanceSmall" android:textAppearance="?android:attr/textAppearanceSmall"
android:textColor="?android:attr/textColorPrimary" /> android:textColor="?android:attr/textColorPrimary" />
<EditText <EditText
android:id="@+id/account_port" android:id="@+id/account_port"
android:singleLine="true" android:singleLine="true"
@ -53,34 +60,40 @@
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_width="fill_parent" android:layout_width="fill_parent"
android:contentDescription="@string/account_setup_outgoing_port_label" /> android:contentDescription="@string/account_setup_outgoing_port_label" />
<CheckBox <CheckBox
android:id="@+id/account_require_login" android:id="@+id/account_require_login"
android:layout_width="fill_parent" android:layout_width="fill_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:text="@string/account_setup_outgoing_require_login_label" /> android:text="@string/account_setup_outgoing_require_login_label" />
<LinearLayout <LinearLayout
android:id="@+id/account_require_login_settings" android:id="@+id/account_require_login_settings"
android:layout_width="fill_parent" android:layout_width="fill_parent"
android:layout_height="fill_parent" android:layout_height="fill_parent"
android:orientation="vertical" android:orientation="vertical"
android:visibility="gone"> android:visibility="gone">
<TextView <TextView
android:text="@string/account_setup_outgoing_authentication_label" android:text="@string/account_setup_outgoing_authentication_label"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_width="fill_parent" android:layout_width="fill_parent"
android:textAppearance="?android:attr/textAppearanceSmall" android:textAppearance="?android:attr/textAppearanceSmall"
android:textColor="?android:attr/textColorPrimary" /> android:textColor="?android:attr/textColorPrimary" />
<Spinner <Spinner
android:id="@+id/account_auth_type" android:id="@+id/account_auth_type"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_width="fill_parent" android:layout_width="fill_parent"
android:contentDescription="@string/account_setup_outgoing_authentication_label" /> android:contentDescription="@string/account_setup_outgoing_authentication_label" />
<TextView <TextView
android:text="@string/account_setup_outgoing_username_label" android:text="@string/account_setup_outgoing_username_label"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_width="fill_parent" android:layout_width="fill_parent"
android:textAppearance="?android:attr/textAppearanceSmall" android:textAppearance="?android:attr/textAppearanceSmall"
android:textColor="?android:attr/textColorPrimary" /> android:textColor="?android:attr/textColorPrimary" />
<EditText <EditText
android:id="@+id/account_username" android:id="@+id/account_username"
android:singleLine="true" android:singleLine="true"
@ -88,6 +101,7 @@
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_width="fill_parent" android:layout_width="fill_parent"
android:contentDescription="@string/account_setup_outgoing_username_label" /> android:contentDescription="@string/account_setup_outgoing_username_label" />
<TextView <TextView
android:id="@+id/account_password_label" android:id="@+id/account_password_label"
android:text="@string/account_setup_outgoing_password_label" android:text="@string/account_setup_outgoing_password_label"
@ -95,6 +109,7 @@
android:layout_width="fill_parent" android:layout_width="fill_parent"
android:textAppearance="?android:attr/textAppearanceSmall" android:textAppearance="?android:attr/textAppearanceSmall"
android:textColor="?android:attr/textColorPrimary" /> android:textColor="?android:attr/textColorPrimary" />
<EditText <EditText
android:id="@+id/account_password" android:id="@+id/account_password"
android:singleLine="true" android:singleLine="true"
@ -102,6 +117,7 @@
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_width="fill_parent" android:layout_width="fill_parent"
android:contentDescription="@string/account_setup_outgoing_password_label" /> android:contentDescription="@string/account_setup_outgoing_password_label" />
<TextView <TextView
android:id="@+id/account_client_certificate_label" android:id="@+id/account_client_certificate_label"
android:text="@string/account_setup_incoming_client_certificate_label" android:text="@string/account_setup_incoming_client_certificate_label"
@ -110,17 +126,21 @@
android:textAppearance="?android:attr/textAppearanceSmall" android:textAppearance="?android:attr/textAppearanceSmall"
android:textColor="?android:attr/textColorPrimary" android:textColor="?android:attr/textColorPrimary"
android:visibility="gone" /> android:visibility="gone" />
<com.fsck.k9.view.ClientCertificateSpinner <com.fsck.k9.view.ClientCertificateSpinner
android:id="@+id/account_client_certificate_spinner" android:id="@+id/account_client_certificate_spinner"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_width="fill_parent" android:layout_width="fill_parent"
android:visibility="gone" /> android:visibility="gone" />
</LinearLayout> </LinearLayout>
<View <View
android:layout_width="fill_parent" android:layout_width="fill_parent"
android:layout_height="0dip" android:layout_height="0dip"
android:layout_weight="1" /> android:layout_weight="1" />
</LinearLayout> </LinearLayout>
</ScrollView> </ScrollView>
<include layout="@layout/wizard_next" /> <include layout="@layout/wizard_next" />
</LinearLayout> </LinearLayout>