123456789101112131415161718192021222324 |
- <?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="6dp">
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="horizontal">
- <ImageView
- android:id="@+id/circle_comment_preview_item_img"
- android:layout_width="24dp"
- android:layout_height="24dp" />
- <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>
|