lmw
2023-06-25 a988e7c15f5ce63785b77e01c89bec2565668982
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<?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>