endian11
2021-01-19 b2fe9c4f073523284c671bf8895a8412cd269518
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
<?xml version="1.0" encoding="utf-8"?>
 
 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">
 
    <include layout="@layout/toolbar"/>
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@drawable/ic_bground"
        android:orientation="vertical"
        >
 
 
 
    <TextView
        android:id="@+id/tv_notify"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginBottom="20dp"
        android:layout_marginStart="15dp"
        android:text="@string/auto_act_to_refresh"
        android:textColor="#ffffffff"
        android:textSize="15sp" />
 
    <TextView
        android:id="@+id/tv_no_pro"
        android:layout_width="match_parent"
        android:layout_height="44dp"
        android:background="@drawable/shape_auto_wifi_text"
        android:gravity="center_vertical"
        android:paddingEnd="15dp"
        android:paddingStart="15dp"
        android:text="未检测到蓝牙设备"
        android:textColor="@color/color_f76260"
        android:textSize="16sp"
        android:visibility="gone" />
 
    <safeluck.drive.evaluation.customview.PullToRefreshLayout
        android:id="@+id/pr_refresh"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1">
 
        <include layout="@layout/view_refresh_head" />
 
        <safeluck.drive.evaluation.customview.PullListView
            android:id="@+id/lv_wifi_list"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_alignParentStart="true"
            android:layout_alignParentTop="true"
            android:cacheColorHint="#00000000"
            android:descendantFocusability="afterDescendants"
            android:divider="@null"
            android:listSelector="#00000000" />
 
        <include layout="@layout/view_load_more" />
    </safeluck.drive.evaluation.customview.PullToRefreshLayout>
 
</LinearLayout>
</LinearLayout>