From 5013f36ba4876850ee715cc295792b417da111c5 Mon Sep 17 00:00:00 2001 From: qvandekadsye Date: Fri, 13 Feb 2015 14:52:18 +0100 Subject: [PATCH 1/2] re-correcting String glitch by changing layout-height attribute --- k9mail/src/main/res/layout/wizard_setup.xml | 2 +- k9mail/src/main/res/layout/wizard_welcome.xml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/k9mail/src/main/res/layout/wizard_setup.xml b/k9mail/src/main/res/layout/wizard_setup.xml index 2a447e6a9..154dbb3e2 100644 --- a/k9mail/src/main/res/layout/wizard_setup.xml +++ b/k9mail/src/main/res/layout/wizard_setup.xml @@ -17,7 +17,7 @@ android:id="@+id/manual_setup" style="?android:attr/buttonBarButtonStyle" android:layout_width="0dp" - android:layout_height="wrap_content" + android:layout_height="match_parent" android:layout_weight="1" android:background="@drawable/selectable_item_background" android:text="@string/account_setup_basics_manual_setup_action" /> diff --git a/k9mail/src/main/res/layout/wizard_welcome.xml b/k9mail/src/main/res/layout/wizard_welcome.xml index 30877890e..85bb142cf 100644 --- a/k9mail/src/main/res/layout/wizard_welcome.xml +++ b/k9mail/src/main/res/layout/wizard_welcome.xml @@ -17,7 +17,7 @@ android:id="@+id/import_settings" style="?android:attr/buttonBarButtonStyle" android:layout_width="0dp" - android:layout_height="wrap_content" + android:layout_height="match_parent" android:layout_weight="1" android:background="@drawable/selectable_item_background" android:text="@string/settings_import" /> From 9b1a0b3614fb67997893c95ff6c15d03d5ac2f27 Mon Sep 17 00:00:00 2001 From: qvandekadsye Date: Mon, 16 Feb 2015 13:48:31 +0100 Subject: [PATCH 2/2] Applying "match-parent" value to "next" buttons. --- k9mail/src/main/res/layout/wizard_setup.xml | 2 +- k9mail/src/main/res/layout/wizard_welcome.xml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/k9mail/src/main/res/layout/wizard_setup.xml b/k9mail/src/main/res/layout/wizard_setup.xml index 154dbb3e2..a98ebdaf2 100644 --- a/k9mail/src/main/res/layout/wizard_setup.xml +++ b/k9mail/src/main/res/layout/wizard_setup.xml @@ -26,7 +26,7 @@ android:id="@+id/next" style="?android:attr/buttonBarButtonStyle" android:layout_width="0dp" - android:layout_height="wrap_content" + android:layout_height="match_parent" android:layout_weight="1" android:background="@drawable/selectable_item_background" android:text="@string/next_action" /> diff --git a/k9mail/src/main/res/layout/wizard_welcome.xml b/k9mail/src/main/res/layout/wizard_welcome.xml index 85bb142cf..8c4c83f1f 100644 --- a/k9mail/src/main/res/layout/wizard_welcome.xml +++ b/k9mail/src/main/res/layout/wizard_welcome.xml @@ -26,7 +26,7 @@ android:id="@+id/next" style="?android:attr/buttonBarButtonStyle" android:layout_width="0dp" - android:layout_height="wrap_content" + android:layout_height="match_parent" android:layout_weight="1" android:background="@drawable/selectable_item_background" android:text="@string/next_action" />