59 lines
2.5 KiB
XML
59 lines
2.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:orientation="vertical"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="13.35dp">
|
|
<LinearLayout
|
|
android:orientation="horizontal"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
<ImageView
|
|
android:id="@+id/imgPortrait"
|
|
android:layout_width="@dimen/diy_details_comment_icon"
|
|
android:layout_height="@dimen/diy_details_comment_icon"
|
|
android:src="@drawable/diy_details_comment"
|
|
android:scaleType="centerCrop"/>
|
|
<LinearLayout
|
|
android:orientation="vertical"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="8dp">
|
|
<TextView
|
|
android:textSize="@dimen/theme_14sp"
|
|
android:textStyle="bold"
|
|
android:textColor="@color/theme_txt"
|
|
android:id="@+id/tvNickname"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:text="Jan"
|
|
android:maxLines="1"
|
|
android:layout_weight="1"/>
|
|
<TextView
|
|
android:textSize="@dimen/theme_12sp"
|
|
android:textColor="@color/txt_96A6B4"
|
|
android:id="@+id/tvCommentTime"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:text="Just comment"
|
|
android:layout_weight="1"/>
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
<TextView
|
|
android:textSize="@dimen/theme_13sp"
|
|
android:textColor="@color/txt_96A6B4"
|
|
android:gravity="center_vertical"
|
|
android:id="@+id/tvCommentContent"
|
|
android:background="@drawable/comment_item_shadow"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="5.2dp"
|
|
android:layout_marginRight="8dp"
|
|
android:text="Marry giving step by step illustrations of every pagiving step by step illustrations of every pa"/>
|
|
<View
|
|
android:background="@color/theme_divider_line"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="@dimen/comment_divider_height"
|
|
android:layout_marginTop="@dimen/comment_divider_margin"/>
|
|
</LinearLayout>
|