123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <?xml version="1.0" encoding="utf-8"?>
- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:paddingTop="10dp"
- android:orientation="horizontal">
- <ImageView
- android:id="@+id/identity_image"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerVertical="true"
- android:layout_marginLeft="10dp"
- android:visibility="gone"/>
- <com.sheishuo.app.chatroom.widget.ChatRoomImageView
- android:id="@+id/user_head"
- android:layout_width="35dp"
- android:layout_height="35dp"
- android:layout_centerVertical="true"
- android:layout_marginLeft="10dp"
- android:layout_toRightOf="@id/identity_image" />
- <TextView
- android:id="@+id/user_name"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerVertical="true"
- android:layout_marginLeft="10dp"
- android:layout_toRightOf="@id/user_head"
- android:textColor="@color/color_black_ff666666"
- android:textSize="@dimen/text_size_15" />
- <View
- android:layout_width="match_parent"
- android:layout_height="1px"
- android:layout_marginLeft="10dp"
- android:layout_marginRight="10dp"
- android:layout_marginTop="10dp"
- android:layout_below="@id/user_head"
- android:background="@color/color_split_line_d9d9d9" />
- </RelativeLayout>
|