<?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>
|