summaryrefslogtreecommitdiffstats
path: root/res
diff options
context:
space:
mode:
authorTony Mantler <nicoya@google.com>2014-04-18 11:06:24 -0700
committerTony Mantler <nicoya@google.com>2014-04-18 11:06:24 -0700
commit7b350f101cb9b8319667e0afb79318eae41c5d81 (patch)
tree88738fb5b8fcfa5469b10122f59850a2701d336f /res
parentcdfffcf4609336445cbaade49581d07ad10e7bf1 (diff)
downloadandroid_packages_apps_Email-7b350f101cb9b8319667e0afb79318eae41c5d81.tar.gz
android_packages_apps_Email-7b350f101cb9b8319667e0afb79318eae41c5d81.tar.bz2
android_packages_apps_Email-7b350f101cb9b8319667e0afb79318eae41c5d81.zip
Fix layout of standalone credential activity
b/14144228 Change-Id: Ic75f2444b74e101d25afd312ba94f5df3e8204c3
Diffstat (limited to 'res')
-rw-r--r--res/layout/account_credentials_fragment.xml29
1 files changed, 13 insertions, 16 deletions
diff --git a/res/layout/account_credentials_fragment.xml b/res/layout/account_credentials_fragment.xml
index eff24a9cc..babf73964 100644
--- a/res/layout/account_credentials_fragment.xml
+++ b/res/layout/account_credentials_fragment.xml
@@ -13,23 +13,20 @@
See the License for the specific language governing permissions and
limitations under the License.
-->
-
-<LinearLayout
- xmlns:android="http://schemas.android.com/apk/res/android"
- style="@style/account_setup_fragment_container"
- android:layout_width="match_parent"
+<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="match_parent"
- android:orientation="vertical" >
-
- <include
- layout="@layout/account_setup_credentials_fragment"
+ android:layout_width="match_parent" >
+ <LinearLayout
+ style="@style/account_setup_fragment_container"
android:layout_width="match_parent"
- android:layout_height="wrap_content" />
+ android:layout_height="wrap_content"
+ android:orientation="vertical" >
- <FrameLayout android:id="@+id/button_container"
- android:layout_width="match_parent"
- android:layout_height="wrap_content">
- <include layout="@layout/account_settings_buttons" />
- </FrameLayout>
+ <include
+ layout="@layout/account_setup_credentials_fragment"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content" />
-</LinearLayout>
+ <include layout="@layout/account_settings_buttons" />
+ </LinearLayout>
+</ScrollView>