85 lines
3.3 KiB
XML
85 lines
3.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
xmlns:fresco="http://schemas.android.com/apk/res-auto"
|
||
xmlns:tools="http://schemas.android.com/tools"
|
||
android:layout_width="match_parent"
|
||
android:layout_height="wrap_content"
|
||
android:background="@color/white"
|
||
android:orientation="vertical"
|
||
tools:viewBindingIgnore="true">
|
||
|
||
<RelativeLayout
|
||
android:layout_width="match_parent"
|
||
android:layout_height="wrap_content"
|
||
android:layout_marginTop="10dp"
|
||
android:layout_marginBottom="10dp">
|
||
|
||
<com.facebook.drawee.view.SimpleDraweeView
|
||
android:id="@+id/sv_attention_avatar"
|
||
android:layout_width="40dp"
|
||
android:layout_height="40dp"
|
||
android:layout_centerVertical="true"
|
||
android:layout_marginStart="10dp"
|
||
fresco:roundAsCircle="true" />
|
||
|
||
<LinearLayout
|
||
android:layout_width="wrap_content"
|
||
android:layout_height="wrap_content"
|
||
android:layout_centerVertical="true"
|
||
android:layout_marginLeft="12dp"
|
||
android:layout_toRightOf="@+id/sv_attention_avatar"
|
||
android:orientation="vertical">
|
||
|
||
<TextView
|
||
android:id="@+id/tv_attention_name"
|
||
android:layout_width="wrap_content"
|
||
android:layout_height="wrap_content"
|
||
android:text="醉红颜"
|
||
android:textColor="@color/one_text"
|
||
android:textSize="15dp"
|
||
android:textStyle="bold" />
|
||
|
||
<LinearLayout
|
||
android:layout_width="wrap_content"
|
||
android:layout_height="wrap_content"
|
||
android:layout_marginTop="6dp"
|
||
android:orientation="horizontal">
|
||
|
||
<TextView
|
||
android:id="@+id/tv_attention_site"
|
||
android:layout_width="wrap_content"
|
||
android:layout_height="wrap_content"
|
||
android:text="Ta上线啦!"
|
||
android:textColor="#38C019"
|
||
android:textSize="12dp" />
|
||
|
||
<TextView
|
||
android:id="@+id/tv_attention_time"
|
||
android:layout_width="wrap_content"
|
||
android:layout_height="wrap_content"
|
||
android:layout_marginStart="8dp"
|
||
android:text=""
|
||
android:textColor="@color/two_text"
|
||
android:textSize="12dp" />
|
||
</LinearLayout>
|
||
</LinearLayout>
|
||
|
||
<com.flyco.roundview.RoundTextView
|
||
android:id="@+id/tv_attention_btn"
|
||
android:layout_width="wrap_content"
|
||
android:layout_height="wrap_content"
|
||
android:layout_alignParentEnd="true"
|
||
android:layout_centerVertical="true"
|
||
android:layout_marginEnd="10dp"
|
||
android:paddingStart="16dp"
|
||
android:paddingTop="5dp"
|
||
android:paddingEnd="16dp"
|
||
android:paddingBottom="5dp"
|
||
android:text="查看"
|
||
android:textColor="#C178FE"
|
||
android:textSize="12dp"
|
||
fresco:rv_cornerRadius="42dp"
|
||
fresco:rv_strokeColor="#C178FE"
|
||
fresco:rv_strokeWidth="0.5dp" />
|
||
</RelativeLayout>
|
||
</LinearLayout> |