<?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:orientation="horizontal"
|
android:foreground="?android:attr/selectableItemBackground"
|
app:cardCornerRadius="@dimen/article_card_radius"
|
app:cardUseCompatPadding="true"
|
app:cardElevation="5dp"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
>
|
<LinearLayout
|
android:layout_marginTop="@dimen/magin_common"
|
android:layout_marginLeft="@dimen/magin_common"
|
android:layout_marginRight="@dimen/magin_common"
|
android:layout_marginBottom="@dimen/magin_common_half"
|
android:orientation="horizontal"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content">
|
<cn.wildfire.chat.kit.widget.CircleImageView
|
android:id="@+id/iv_icon"
|
app:es_shape_type="round"
|
android:layout_width="60dp"
|
android:layout_height="60dp"/>
|
<LinearLayout
|
android:layout_marginLeft="@dimen/magin_common_half"
|
android:orientation="vertical"
|
android:layout_weight="1"
|
android:layout_width="0dp"
|
android:layout_height="wrap_content">
|
|
<TextView
|
android:textColor="@color/black_msg"
|
android:textSize="@dimen/text_size_15"
|
android:id="@+id/tv_name"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"/>
|
<LinearLayout
|
android:layout_marginTop="12dp"
|
android:layout_marginBottom="12dp"
|
android:orientation="horizontal"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content">
|
<TextView
|
android:textColor="@color/color_gary30"
|
android:textSize="@dimen/text_size_13"
|
android:id="@+id/tv_hospital"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"/>
|
|
<TextView
|
android:layout_marginLeft="@dimen/magin_common_half"
|
android:textColor="@color/color_gary30"
|
android:textSize="@dimen/text_size_13"
|
android:id="@+id/tv_depart"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"/>
|
</LinearLayout>
|
|
<TextView
|
android:textColor="@color/colorGreen"
|
android:textSize="@dimen/text_size_13"
|
android:id="@+id/tv_count"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"/>
|
</LinearLayout>
|
<TextView
|
android:textColor="@color/color_gary30"
|
android:textSize="@dimen/text_size_13"
|
android:id="@+id/tv_title"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"/>
|
</LinearLayout>
|
</androidx.cardview.widget.CardView>
|