diff options
author | Christian S <christian@pix-art.de> | 2016-04-05 20:42:44 +0200 |
---|---|---|
committer | Christian S <christian@pix-art.de> | 2016-04-05 20:42:44 +0200 |
commit | 9317ea212cbf4f1bd739ed37c7702b52791c11a5 (patch) | |
tree | 8c3069d7539a7349eb9cba40da8b23c48e5dff80 /src | |
parent | 89ca103b9f2d89c0c06f68747f2c6f2a8a4c0c91 (diff) |
fix ui bug in edit account view
Diffstat (limited to 'src')
-rw-r--r-- | src/main/res/layout/activity_edit_account.xml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main/res/layout/activity_edit_account.xml b/src/main/res/layout/activity_edit_account.xml index 8038e633a..41f4f731e 100644 --- a/src/main/res/layout/activity_edit_account.xml +++ b/src/main/res/layout/activity_edit_account.xml @@ -3,7 +3,7 @@ xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" - android:layout_height="match_parent" + android:layout_height="wrap_content" android:background="@color/grey200"> <ScrollView @@ -32,8 +32,8 @@ <com.makeramen.roundedimageview.RoundedImageView android:id="@+id/avater" - android:layout_width="fill_parent" - android:layout_height="fill_parent" + android:layout_width="wrap_content" + android:layout_height="wrap_content" android:layout_alignParentTop="true" android:layout_centerHorizontal="true" android:layout_marginBottom="16dp" |