<?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="match_parent"
|
android:orientation="vertical">
|
|
<com.scwang.smartrefresh.layout.SmartRefreshLayout
|
android:id="@+id/smart_refresh_layout"
|
android:layout_width="match_parent"
|
android:layout_height="0dp"
|
android:layout_weight="1"
|
app:layout_behavior="com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior"
|
app:srlEnableAutoLoadMore="false">
|
|
<com.scwang.smartrefresh.layout.header.ClassicsHeader
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:gravity="center" />
|
|
<androidx.recyclerview.widget.RecyclerView
|
android:id="@+id/recycler_view_commend"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent" />
|
|
<com.scwang.smartrefresh.layout.footer.ClassicsFooter
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:gravity="center"
|
app:srlTextNothing="没有更多了"
|
app:srlTextSizeTitle="12sp" />
|
|
</com.scwang.smartrefresh.layout.SmartRefreshLayout>
|
|
<LinearLayout
|
android:id="@+id/ll_bottom_commend"
|
android:layout_width="match_parent"
|
android:layout_height="51dp"
|
android:gravity="center_vertical"
|
android:orientation="horizontal">
|
|
<ImageView
|
android:id="@+id/iv_head_mine"
|
android:layout_width="38dp"
|
android:layout_height="38dp"
|
android:layout_marginStart="17dp" />
|
|
<TextView
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:layout_marginStart="12dp"
|
android:layout_marginTop="10dp"
|
android:layout_marginEnd="14dp"
|
android:layout_marginBottom="11dp"
|
android:background="@drawable/bg_edit_cricle"
|
android:drawableStart="@mipmap/car_edit"
|
android:drawablePadding="8dp"
|
android:gravity="center_vertical"
|
android:paddingStart="11dp"
|
android:text="发表评论(最多150字)"
|
android:textColor="#80333333"
|
android:textSize="13sp" />
|
|
</LinearLayout>
|
|
</LinearLayout>
|