mirror of
https://github.com/pierre42100/ComunicAndroid
synced 2025-04-21 04:20:56 +00:00
33 lines
1.2 KiB
XML
33 lines
1.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<LinearLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:layout_centerVertical="true"
|
|
android:layout_centerHorizontal="true">
|
|
|
|
<ImageView
|
|
android:id="@+id/fragments_userinfos_account_image"
|
|
android:layout_width="64dp"
|
|
android:layout_height="64dp"
|
|
android:contentDescription="User account image"
|
|
android:src="@drawable/default_account_image"/>
|
|
|
|
<TextView
|
|
android:id="@+id/fragments_userinfos_user_name"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_vertical"
|
|
android:layout_marginStart="6dp"
|
|
android:textSize="18sp"
|
|
android:textColor="@android:color/black"
|
|
tools:text="Full user name"/>
|
|
</LinearLayout>
|
|
|
|
|
|
</RelativeLayout> |