118 lines
3.7 KiB
XML
118 lines
3.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="80dp"
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:gravity="center"
|
|
android:orientation="horizontal">
|
|
|
|
<ImageView
|
|
android:id="@+id/icon"
|
|
android:layout_width="40dp"
|
|
android:layout_height="30dp"
|
|
android:layout_centerVertical="true"
|
|
android:layout_marginLeft="10dp"
|
|
/>
|
|
|
|
<com.makeramen.roundedimageview.RoundedImageView
|
|
android:id="@+id/avatar"
|
|
android:layout_width="50dp"
|
|
android:layout_height="50dp"
|
|
android:layout_centerVertical="true"
|
|
android:layout_marginLeft="8dp"
|
|
android:layout_marginRight="12dp"
|
|
android:scaleType="centerCrop"
|
|
app:riv_oval="true"
|
|
/>
|
|
|
|
<LinearLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<TextView
|
|
android:id="@+id/name"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="5dp"
|
|
android:ellipsize="end"
|
|
android:maxWidth="100dp"
|
|
android:singleLine="true"
|
|
android:textColor="#F6F7FB"
|
|
android:textSize="15sp"
|
|
/>
|
|
|
|
<LinearLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal">
|
|
<ImageView
|
|
android:id="@+id/sex"
|
|
android:layout_width="18dp"
|
|
android:layout_height="15dp"
|
|
android:layout_marginLeft="8dp"
|
|
android:layout_marginTop="5dp"
|
|
/>
|
|
|
|
<ImageView
|
|
android:id="@+id/level"
|
|
android:layout_width="30dp"
|
|
android:layout_height="15dp"
|
|
android:layout_marginLeft="5dp"
|
|
android:layout_marginTop="5dp"/>
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="right">
|
|
<LinearLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginBottom="5dp"
|
|
android:layout_marginTop="4dp"
|
|
android:orientation="vertical">
|
|
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginRight="3dp"
|
|
android:text="貢獻度"
|
|
android:layout_gravity="right"
|
|
android:textColor="#ffb1b1b1"
|
|
android:textSize="12sp"/>
|
|
|
|
<TextView
|
|
android:id="@+id/votes"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="123456789"
|
|
android:textColor="#ffc2dff0"
|
|
android:gravity="center"
|
|
android:textSize="12sp"/>
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
|
|
|
|
</LinearLayout> |