28 lines
1019 B
XML
28 lines
1019 B
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content">
|
||
|
|
||
|
<LinearLayout
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_marginBottom="18dp"
|
||
|
android:gravity="center_vertical">
|
||
|
|
||
|
<com.yunbao.common.views.weight.ClipPathCircleImage
|
||
|
android:id="@+id/avatar"
|
||
|
android:layout_width="40dp"
|
||
|
android:layout_height="40dp"
|
||
|
android:layout_marginStart="20dp"
|
||
|
android:scaleType="centerCrop" />
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/user_name"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_marginStart="12.33dp"
|
||
|
android:text="@string/noble"
|
||
|
android:textColor="#222324"
|
||
|
android:textSize="16sp" />
|
||
|
</LinearLayout>
|
||
|
</LinearLayout>
|