93 lines
3.3 KiB
XML
93 lines
3.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<layout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
|
|
|
<LinearLayout
|
|
android:layout_margin="16dp"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:background="@color/white"
|
|
>
|
|
|
|
<ImageView
|
|
android:id="@+id/image_head"
|
|
android:layout_width="40dp"
|
|
android:layout_height="40dp"
|
|
/>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="4dp"
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
android:id="@+id/tv_nikeName"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textColor="@color/light_color_blue"
|
|
android:textSize="14sp" />
|
|
|
|
<TextView
|
|
android:id="@+id/tv_content"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="4dp"
|
|
android:textColor="@color/black" />
|
|
|
|
<com.lzy.ninegrid.NineGridView
|
|
android:id="@+id/nineGrid"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginRight="32dp"
|
|
app:ngv_gridSpacing="5dp"
|
|
app:ngv_maxSize="9"
|
|
app:ngv_mode="grid"
|
|
app:ngv_singleImageRatio="1"
|
|
app:ngv_singleImageSize="250dp" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<TextView
|
|
android:id="@+id/tv_time"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:layout_weight="1"
|
|
android:text="21天前"
|
|
android:textColor="@color/darkgray"
|
|
|
|
android:textSize="12sp" />
|
|
|
|
<ImageView
|
|
android:id="@+id/iv_comment"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="25dp"
|
|
android:layout_gravity="right"
|
|
android:layout_marginRight="16dp"
|
|
android:padding="5dp"
|
|
android:src="@mipmap/pl" />
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
<TextView
|
|
android:padding="3dp"
|
|
android:id="@+id/tv_like"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="@color/LightGraydddddd"
|
|
android:text="❤ 哈哈哈,呵呵呵" />
|
|
|
|
<android.support.v7.widget.RecyclerView
|
|
android:paddingLeft="3dp"
|
|
android:id="@+id/rv_comment"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="@color/LightGraydddddd" />
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
</layout> |