<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.cardview.widget.CardView 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="wrap_content"
|
android:foreground="?android:attr/selectableItemBackground"
|
app:cardCornerRadius="@dimen/article_card_radius"
|
app:cardUseCompatPadding="true"
|
android:layout_marginRight="@dimen/margin_common"
|
android:layout_marginLeft="@dimen/margin_common"
|
app:cardElevation="5dp"
|
android:paddingTop="10dp">
|
|
<LinearLayout
|
android:layout_marginTop="@dimen/margin_common"
|
android:layout_marginBottom="@dimen/margin_common"
|
android:layout_width="match_parent"
|
android:orientation="horizontal"
|
android:layout_height="match_parent">
|
<cn.wildfire.chat.kit.widget.CircleImageView
|
android:id="@+id/iv_icon"
|
android:layout_gravity="center"
|
app:es_shape_type="round"
|
android:layout_marginLeft="@dimen/margin_common"
|
android:layout_marginRight="@dimen/margin_common_half"
|
android:layout_width="50dp"
|
android:layout_height="50dp"/>
|
|
<LinearLayout
|
android:orientation="vertical"
|
android:layout_weight="1"
|
android:layout_width="0dp"
|
android:layout_height="wrap_content">
|
<TextView
|
android:layout_marginBottom="4dp"
|
android:id="@+id/tv_name"
|
android:textSize="@dimen/text_size_12"
|
android:textColor="@color/black_title"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"/>
|
|
<TextView
|
android:layout_marginBottom="4dp"
|
android:id="@+id/tv_detail"
|
android:textSize="@dimen/text_size_11"
|
android:textColor="@color/gray_deep"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"/>
|
<TextView
|
android:layout_marginBottom="4dp"
|
android:id="@+id/tv_time"
|
android:textSize="@dimen/text_size_11"
|
android:textColor="@color/gray_deep"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"/>
|
</LinearLayout>
|
|
|
<LinearLayout
|
android:orientation="vertical"
|
android:layout_width="wrap_content"
|
android:layout_marginRight="@dimen/margin_common"
|
android:layout_height="wrap_content">
|
<TextView
|
android:layout_marginBottom="4dp"
|
android:id="@+id/tv_money"
|
android:textSize="@dimen/text_size_20"
|
android:textColor="@color/black_title"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"/>
|
|
<TextView
|
android:layout_marginBottom="@dimen/margin_common_half"
|
android:id="@+id/tv_status"
|
android:textSize="@dimen/text_size_13"
|
android:textColor="@color/gray_common"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"/>
|
|
</LinearLayout>
|
|
</LinearLayout>
|
</androidx.cardview.widget.CardView>
|