58 lines
1.8 KiB
XML
58 lines
1.8 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout
|
|
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="60dp"
|
|
>
|
|
|
|
<com.makeramen.roundedimageview.RoundedImageView
|
|
android:id="@+id/avatar"
|
|
android:layout_width="40dp"
|
|
android:layout_height="40dp"
|
|
android:layout_centerVertical="true"
|
|
android:layout_marginLeft="15dp"
|
|
android:layout_marginRight="10dp"
|
|
app:riv_oval="true"
|
|
android:scaleType="centerCrop"
|
|
/>
|
|
|
|
<TextView
|
|
android:id="@+id/name"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignTop="@id/avatar"
|
|
android:layout_toRightOf="@id/avatar"
|
|
android:ellipsize="end"
|
|
android:maxWidth="150dp"
|
|
android:singleLine="true"
|
|
android:textColor="@color/textColor"
|
|
android:textSize="16sp"
|
|
/>
|
|
|
|
<TextView
|
|
android:id="@+id/time"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_below="@id/name"
|
|
android:layout_toRightOf="@id/avatar"
|
|
android:textColor="@color/gray3"
|
|
android:textSize="12sp"
|
|
/>
|
|
|
|
<TextView
|
|
android:id="@+id/win_coin"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_centerVertical="true"
|
|
android:layout_marginRight="15dp"
|
|
android:textColor="@color/yellow4"
|
|
android:textSize="18sp"
|
|
/>
|
|
|
|
<View
|
|
style="@style/line2"
|
|
android:layout_alignParentBottom="true"
|
|
/>
|
|
</RelativeLayout> |