12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:app="http://schemas.android.com/apk/res-auto"
- xmlns:tools="http://schemas.android.com/tools"
- android:orientation="vertical" android:layout_width="match_parent"
- android:layout_height="match_parent">
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:padding="10dp">
- <com.netease.nim.uikit.common.ui.imageview.HeadImageView
- android:id="@+id/circle_details_comment_layout_avatar"
- android:layout_width="48dp"
- android:layout_height="48dp"
- android:src="@drawable/nim_avatar_default"
- app:layout_constraintLeft_toLeftOf="parent"
- app:layout_constraintTop_toTopOf="parent" />
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginLeft="60dp"
- android:orientation="vertical"
- android:paddingTop="5dp">
- <TextView
- android:id="@+id/circle_details_comment_layout_name"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:text="用户名"
- android:textColor="@color/blue" />
- <TextView
- android:id="@+id/circle_details_comment_layout_date"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:text="发布时间"/>
- <TextView
- android:id="@+id/circle_details_comment_layout_content"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:textColor="@color/black"/>
- </LinearLayout>
- </RelativeLayout>
- </LinearLayout>
|