| 12345678910111213141516171819202122232425 | <?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"    android:layout_width="match_parent"    android:layout_height="wrap_content"    android:padding="2dp">    <LinearLayout        android:layout_width="match_parent"        android:layout_height="wrap_content"        android:orientation="horizontal">        <com.netease.nim.uikit.common.ui.imageview.HeadImageView            android:id="@+id/circle_comment_preview_item_img"            android:layout_width="20dp"            android:layout_height="20dp" />        <TextView            android:id="@+id/circle_comment_preview_item_tv"            android:layout_width="match_parent"            android:layout_height="wrap_content"            android:layout_marginLeft="2dp"            android:layout_marginStart="2dp" />    </LinearLayout></LinearLayout>
 |