75 lines
2.7 KiB
XML
75 lines
2.7 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<androidx.appcompat.widget.LinearLayoutCompat xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||
|
android:orientation="horizontal"
|
||
|
android:background="@drawable/shape_sub_rank"
|
||
|
android:layout_marginTop="5dp"
|
||
|
android:paddingStart="9dp"
|
||
|
android:paddingEnd="9dp"
|
||
|
android:gravity="center_vertical"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="50dp">
|
||
|
|
||
|
<RelativeLayout
|
||
|
android:layout_width="26dp"
|
||
|
android:layout_height="26dp">
|
||
|
|
||
|
<androidx.appcompat.widget.AppCompatImageView
|
||
|
android:id="@+id/sub_rank_image"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:src="@mipmap/sub_1"/>
|
||
|
|
||
|
<androidx.appcompat.widget.AppCompatTextView
|
||
|
android:id="@+id/sub_rank_text"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:textColor="@color/black2"
|
||
|
android:layout_centerInParent="true"
|
||
|
android:fontFamily="sans-serif-medium"
|
||
|
android:textSize="13sp"
|
||
|
android:text="4"/>
|
||
|
|
||
|
</RelativeLayout>
|
||
|
|
||
|
<com.makeramen.roundedimageview.RoundedImageView
|
||
|
android:id="@+id/sub_head"
|
||
|
android:layout_width="40dp"
|
||
|
android:layout_height="40dp"
|
||
|
app:riv_corner_radius="360dp"
|
||
|
app:riv_border_width="1dp"
|
||
|
app:riv_border_color="#FF333333"
|
||
|
android:layout_marginStart="9dp"
|
||
|
android:scaleType="centerCrop"/>
|
||
|
|
||
|
<androidx.appcompat.widget.LinearLayoutCompat
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_marginStart="10dp"
|
||
|
android:orientation="vertical">
|
||
|
|
||
|
<androidx.appcompat.widget.AppCompatTextView
|
||
|
android:id="@+id/sub_name"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:textStyle="bold"
|
||
|
android:singleLine="true"
|
||
|
android:ellipsize="end"
|
||
|
android:textColor="#FF333333"
|
||
|
android:textSize="13sp"
|
||
|
android:text="用户昵称"/>
|
||
|
|
||
|
<androidx.appcompat.widget.AppCompatTextView
|
||
|
android:id="@+id/sub_score"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:textStyle="bold"
|
||
|
android:singleLine="true"
|
||
|
android:layout_marginTop="5dp"
|
||
|
android:textColor="#FF777777"
|
||
|
android:textSize="11sp"
|
||
|
android:text="+10000"/>
|
||
|
|
||
|
</androidx.appcompat.widget.LinearLayoutCompat>
|
||
|
|
||
|
</androidx.appcompat.widget.LinearLayoutCompat>
|