96 lines
3.2 KiB
XML
96 lines
3.2 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="52dp"
|
||
|
android:layout_marginStart="10dp"
|
||
|
android:layout_marginEnd="10dp"
|
||
|
android:background="@drawable/bg_item_random_pk_type_1"
|
||
|
android:gravity="center"
|
||
|
android:orientation="horizontal">
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/item_id"
|
||
|
android:layout_width="0dp"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_marginStart="10dp"
|
||
|
android:layout_weight="0.7"
|
||
|
android:text="序号"
|
||
|
android:textColor="#FFFFFF"
|
||
|
android:textSize="14sp" />
|
||
|
|
||
|
<LinearLayout
|
||
|
android:layout_width="0dp"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_weight="1.5"
|
||
|
android:orientation="horizontal">
|
||
|
|
||
|
<com.makeramen.roundedimageview.RoundedImageView
|
||
|
android:id="@+id/item_avatar"
|
||
|
android:layout_width="28dp"
|
||
|
android:layout_height="28dp"
|
||
|
android:layout_centerInParent="true"
|
||
|
android:layout_centerHorizontal="true"
|
||
|
android:gravity="center"
|
||
|
android:scaleType="centerCrop"
|
||
|
android:src="@mipmap/beauty_jingbai"
|
||
|
app:riv_oval="true" />
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/item_name"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_gravity="center"
|
||
|
android:layout_marginStart="5dp"
|
||
|
android:text="头像&昵称"
|
||
|
android:textColor="#FFFFFF"
|
||
|
android:textSize="14sp" />
|
||
|
</LinearLayout>
|
||
|
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/item_uid"
|
||
|
android:layout_width="0dp"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_weight="0.8"
|
||
|
android:gravity="center"
|
||
|
android:text="ID"
|
||
|
android:textColor="#FFFFFF"
|
||
|
android:textSize="14sp" />
|
||
|
|
||
|
<LinearLayout
|
||
|
android:layout_width="0dp"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_marginEnd="5dp"
|
||
|
android:layout_weight="2"
|
||
|
android:orientation="horizontal">
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/item_status"
|
||
|
android:layout_width="0dp"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_gravity="center"
|
||
|
android:layout_weight="1"
|
||
|
android:gravity="center"
|
||
|
android:text="状态"
|
||
|
android:textColor="#FFFFFF"
|
||
|
android:textSize="14sp" />
|
||
|
|
||
|
<ImageView
|
||
|
android:id="@+id/item_pk"
|
||
|
android:layout_width="0dp"
|
||
|
android:layout_height="27dp"
|
||
|
android:layout_gravity="center"
|
||
|
android:layout_weight="1"
|
||
|
android:src="@mipmap/ic_random_pk_pk" />
|
||
|
|
||
|
<ImageView
|
||
|
android:id="@+id/item_follow"
|
||
|
android:layout_width="0dp"
|
||
|
android:layout_height="23dp"
|
||
|
android:layout_gravity="center"
|
||
|
android:layout_weight="1"
|
||
|
android:src="@mipmap/ic_random_pk_like" />
|
||
|
</LinearLayout>
|
||
|
|
||
|
</LinearLayout>
|