diff options
Diffstat (limited to 'src/main/res')
-rw-r--r-- | src/main/res/layout/activity_edit_account.xml | 18 | ||||
-rw-r--r-- | src/main/res/values/strings.xml | 1 |
2 files changed, 15 insertions, 4 deletions
diff --git a/src/main/res/layout/activity_edit_account.xml b/src/main/res/layout/activity_edit_account.xml index 97289628..fa39ed5e 100644 --- a/src/main/res/layout/activity_edit_account.xml +++ b/src/main/res/layout/activity_edit_account.xml @@ -15,15 +15,24 @@ android:layout_height="wrap_content" android:orientation="vertical" > - <LinearLayout + <RelativeLayout android:id="@+id/editor" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_margin="8dp" android:background="@drawable/infocard_border" android:orientation="vertical" - android:padding="16dp" > - + android:padding="16dp"> + <ImageView android:id="@+id/avater" + android:layout_width="72dp" + android:layout_height="72dp" + android:layout_alignParentTop="true" + android:layout_marginRight="16dp"/> + <LinearLayout + android:layout_width="fill_parent" + android:layout_height="wrap_content" + android:orientation="vertical" + android:layout_toRightOf="@+id/avater"> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" @@ -88,7 +97,8 @@ android:textColor="@color/primarytext" android:textColorHint="@color/secondarytext" android:textSize="?attr/TextSizeBody" /> - </LinearLayout> + </LinearLayout> + </RelativeLayout> <LinearLayout android:id="@+id/stats" diff --git a/src/main/res/values/strings.xml b/src/main/res/values/strings.xml index f8e4eef2..0dbb49ad 100644 --- a/src/main/res/values/strings.xml +++ b/src/main/res/values/strings.xml @@ -284,4 +284,5 @@ <string name="image_transmission_failed">Image transmission failed</string> <string name="scan_qr_code">Scan QR code</string> <string name="show_qr_code">Show QR code</string> + <string name="account_details">Account details</string> </resources>
\ No newline at end of file |