Files
July/app/src/main/res/layout/comment_item.xml
2020-08-31 16:16:44 +08:00

84 lines
3.0 KiB
XML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout android:layout_width="match_parent"
android:layout_height="99dp"
xmlns:android="http://schemas.android.com/apk/res/android">
<RelativeLayout
android:layout_below="@+id/rl_cus_01"
android:id="@+id/yichengjhiao_rv"
android:layout_width="match_parent"
android:layout_height="99.5dp"
android:background="@color/colorWhite">
<com.fenghoo.seven.widget.CircleImageView
android:id="@+id/iv_dea_avatar"
android:layout_width="39dp"
android:layout_height="39dp"
android:layout_marginLeft="7.5dp"
android:layout_marginTop="7.5dp"
android:src="@mipmap/icon_default_empty"
/>
<TextView
android:id="@+id/tv_dea_name"
android:layout_width="wrap_content"
android:layout_height="19dp"
android:text="评论人昵称**抖音ID**"
android:textColor="#ff505050"
android:textSize="14sp"
android:layout_marginLeft="15dp"
android:layout_marginTop="7.5dp"
android:layout_toRightOf="@+id/iv_dea_avatar"
/>
<TextView
android:id="@+id/tv_content"
android:layout_width="wrap_content"
android:layout_height="33dp"
android:text="此处显示视频标题/此处显示视频标题/此处显示视
频标题/此处显示视频标题..."
android:textColor="#ff505050"
android:textSize="12sp"
android:layout_marginLeft="15dp"
android:layout_marginRight="12dp"
android:layout_marginTop="7.5dp"
android:layout_below="@+id/tv_dea_name"
android:layout_toRightOf="@+id/iv_dea_avatar"
/>
<TextView
android:id="@+id/tv_comment_time"
android:layout_width="wrap_content"
android:layout_height="15dp"
android:text="2020-07-01 "
android:textColor="#ffcbcbcb"
android:textSize="11sp"
android:layout_marginLeft="15dp"
android:layout_alignParentBottom="true"
android:layout_marginBottom="4.5dp"
android:layout_toRightOf="@+id/iv_dea_avatar"
/>
<TextView
android:id="@+id/tv_cuslist_caozuo"
android:layout_width="wrap_content"
android:layout_height="17dp"
android:text="回复"
android:textColor="#ff515151"
android:textSize="13sp"
android:layout_alignParentBottom="true"
android:layout_marginBottom="4.5dp"
android:layout_alignParentRight="true"
android:layout_marginRight="12dp"
/>
</RelativeLayout>
<View
android:layout_width="match_parent"
android:layout_height="@dimen/dimen_2dp"
android:background="#F5F5F5"
/>
</RelativeLayout>