120 lines
4.7 KiB
XML
120 lines
4.7 KiB
XML
|
<?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"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:orientation="vertical">
|
||
|
|
||
|
<RelativeLayout
|
||
|
android:id="@+id/rt_root"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_margin="12dp"
|
||
|
android:background="@drawable/background_fff">
|
||
|
|
||
|
<com.makeramen.roundedimageview.RoundedImageView
|
||
|
android:id="@+id/ico"
|
||
|
android:layout_width="48dp"
|
||
|
android:layout_height="48dp"
|
||
|
android:layout_margin="12dp"
|
||
|
android:scaleType="centerCrop"
|
||
|
app:riv_oval="true" />
|
||
|
|
||
|
<LinearLayout
|
||
|
android:id="@+id/rt_content"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_toRightOf="@+id/ico"
|
||
|
android:orientation="horizontal">
|
||
|
|
||
|
<LinearLayout
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_weight="1"
|
||
|
android:layout_marginRight="3dp"
|
||
|
android:orientation="vertical">
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/text"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_marginLeft="6dp"
|
||
|
android:layout_marginTop="12dp"
|
||
|
android:layout_marginRight="65dp"
|
||
|
android:text="名稱名稱"
|
||
|
android:textColor="#ff999999"
|
||
|
android:textSize="13sp" />
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/content"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_below="@id/text"
|
||
|
android:layout_margin="6dp"
|
||
|
android:textColor="@color/black1"
|
||
|
android:textSize="13sp" />
|
||
|
|
||
|
<LinearLayout
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:gravity="center"
|
||
|
android:orientation="horizontal">
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/time"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_margin="6dp"
|
||
|
android:text="2-24 17:00"
|
||
|
android:textColor="@color/gay_8c8c8c"
|
||
|
android:textSize="12sp" />
|
||
|
|
||
|
<LinearLayout
|
||
|
android:id="@+id/lt_reply"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_marginLeft="12dp"
|
||
|
android:gravity="center">
|
||
|
|
||
|
<View
|
||
|
android:layout_width="12dp"
|
||
|
android:layout_height="12dp"
|
||
|
android:background="@mipmap/icon_comments" />
|
||
|
|
||
|
<TextView
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_marginLeft="6dp"
|
||
|
android:text="@string/reply"
|
||
|
android:textColor="@color/gay_8c8c8c"
|
||
|
android:textSize="12sp" />
|
||
|
</LinearLayout>
|
||
|
</LinearLayout>
|
||
|
</LinearLayout>
|
||
|
|
||
|
<LinearLayout
|
||
|
android:id="@+id/lt_img"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="match_parent"
|
||
|
android:visibility="visible">
|
||
|
|
||
|
<androidx.cardview.widget.CardView
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_marginTop="12dp"
|
||
|
android:layout_marginRight="12dp"
|
||
|
app:cardCornerRadius="8dp">
|
||
|
|
||
|
<ImageView
|
||
|
android:id="@+id/img_item_interaction"
|
||
|
android:layout_width="60dp"
|
||
|
android:layout_height="60dp"
|
||
|
android:scaleType="centerCrop" />
|
||
|
|
||
|
</androidx.cardview.widget.CardView>
|
||
|
</LinearLayout>
|
||
|
</LinearLayout>
|
||
|
|
||
|
</RelativeLayout>
|
||
|
|
||
|
</LinearLayout>
|