63 lines
2.3 KiB
XML
63 lines
2.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
tools:viewBindingIgnore="true"
|
|
android:layout_height="match_parent">
|
|
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="68dp">
|
|
<com.facebook.drawee.view.SimpleDraweeView
|
|
android:id="@+id/bill_logo"
|
|
android:layout_width="32dp"
|
|
android:layout_height="32dp"
|
|
android:layout_centerVertical="true"
|
|
android:layout_marginLeft="16dp"/>
|
|
|
|
<LinearLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:layout_toRightOf="@+id/bill_logo"
|
|
android:layout_marginLeft="12dp"
|
|
android:gravity="center_vertical"
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
android:id="@+id/bill_name"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="视频来自——醉红颜"
|
|
android:textColor="@android:color/black"
|
|
android:textSize="14sp"/>
|
|
|
|
<TextView
|
|
android:id="@+id/bill_date"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="5dp"
|
|
android:text="2018.09.18 18:46"
|
|
android:textColor="@color/loginText2"
|
|
android:textSize="14sp"/>
|
|
|
|
</LinearLayout>
|
|
|
|
<TextView
|
|
android:id="@+id/bill_item"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerVertical="true"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_marginRight="16dp"
|
|
android:text="+67金币"
|
|
android:textSize="13sp"
|
|
android:textColor="@color/mainColor"/>
|
|
</RelativeLayout>
|
|
|
|
<View
|
|
android:layout_width="match_parent"
|
|
android:layout_height="2px"
|
|
android:layout_alignParentBottom="true"
|
|
android:background="@color/bottomCuttingLine"/>
|
|
|
|
</RelativeLayout> |