<?xml version="1.0" encoding="utf-8"?>
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
xmlns:tools="http://schemas.android.com/tools"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
android:orientation="vertical">
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:background="@drawable/selector_common_item"
|
android:gravity="center_vertical"
|
android:orientation="horizontal"
|
android:paddingLeft="@dimen/magin_common"
|
android:paddingRight="16dp">
|
|
<cn.wildfire.chat.kit.widget.RoundImageView
|
android:id="@+id/portraitImageView"
|
android:layout_width="50dp"
|
android:layout_height="50dp"
|
app:roundSize="12dp"
|
android:layout_centerVertical="true"
|
android:layout_marginTop="@dimen/magin_common"
|
android:layout_marginBottom="@dimen/magin_common"
|
android:scaleType="centerCrop"
|
android:src="@mipmap/avatar_def" />
|
<TextView
|
android:layout_marginLeft="@dimen/magin_common"
|
android:id="@+id/nameTextView"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="wfc"
|
android:textColor="@color/black1"
|
android:textSize="16sp" />
|
|
|
|
</LinearLayout>
|
|
<View
|
android:id="@+id/dividerLine"
|
style="@style/Line"
|
android:layout_marginLeft="76dp"
|
android:visibility="visible" />
|
</LinearLayout>
|