<?xml version="1.0" encoding="utf-8"?>
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
android:id="@+id/layout_praise_and_comment"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:background="@color/base_F2F2F2"
|
android:orientation="vertical"
|
android:paddingTop="8dp"
|
android:paddingBottom="8dp">
|
|
<TextView
|
android:id="@+id/praise_content"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginLeft="8dp"
|
android:layout_marginRight="4dp"
|
android:textColor="#697A9F"
|
android:textSize="14sp"
|
android:textStyle="bold" />
|
|
<View
|
android:id="@+id/view_line"
|
android:layout_width="match_parent"
|
android:layout_height="0.5dp"
|
android:layout_marginTop="6dp"
|
android:layout_marginBottom="6dp"
|
android:background="@color/base_E7E7E7" />
|
|
<cn.wildfire.chat.moment.third.widgets.VerticalCommentWidget
|
android:id="@+id/vertical_comment_widget"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginLeft="8dp"
|
android:layout_marginRight="4dp"
|
android:orientation="vertical" />
|
</LinearLayout>
|