admin
2022-01-28 760aee20870a34e6130a1c12237c5b747e2b00bd
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
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/white" >
 
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical" >
 
        <com.lcjian.library.util.RefreshLayout
            android:id="@+id/rl_review"
            android:layout_width="match_parent"
            android:layout_height="0dp"
            android:layout_weight="1">
 
            <ListView
                android:id="@+id/lv_review"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:dividerHeight="1dp"></ListView>
        </com.lcjian.library.util.RefreshLayout>
 
        <LinearLayout
            android:id="@+id/tv_review_layout"
            android:layout_width="match_parent"
            android:layout_height="50dp"
            android:orientation="vertical" >
 
            <View
                android:layout_width="match_parent"
                android:layout_height="0.6dp"
                android:background="@color/gray" />
 
            <TextView
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:layout_margin="6dp"
                android:background="@drawable/tv_review_edit"
                android:gravity="center_vertical"
                android:text="@string/review_edit"
                android:textColor="@color/gray"
                android:textSize="14.0sp" />
        </LinearLayout>
    </LinearLayout>
 
    <TextView
        android:id="@+id/tv_no_review"
        style="@style/TextGrayNormal"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:layout_marginBottom="20dp"
        android:text="@string/no_review"
        android:visibility="gone" />
 
</FrameLayout>