87 lines
2.7 KiB
XML
87 lines
2.7 KiB
XML
<?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="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:background="#ffffff"
|
|
android:orientation="vertical">
|
|
|
|
<LinearLayout
|
|
android:id="@+id/lay_data"
|
|
android:visibility="gone"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical">
|
|
|
|
<ListView
|
|
android:id="@+id/listview"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
tools:listitem="@layout/fragment_alarm_item" />
|
|
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:id="@+id/lay_no_signal"
|
|
android:visibility="gone"
|
|
android:layout_marginTop="50dp"
|
|
android:gravity="center_horizontal"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical">
|
|
|
|
<ImageView
|
|
android:layout_width="250dp"
|
|
android:layout_height="200dp"
|
|
android:background="@drawable/no_signal" />
|
|
|
|
<TextView
|
|
android:layout_margin="5dp"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="30dp"
|
|
android:gravity="center"
|
|
android:text="无信号,请检查连接"
|
|
android:textColor="@color/black"
|
|
android:textSize="23sp" />
|
|
|
|
<Button
|
|
android:id="@+id/btn_check"
|
|
android:layout_marginTop="10dp"
|
|
android:layout_width="150dp"
|
|
android:layout_height="50dp"
|
|
android:textColor="@color/write"
|
|
android:text="查看"
|
|
android:textSize="23sp"
|
|
android:background="@drawable/btn_bg_blue"/>
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:id="@+id/emptyLinear"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:orientation="vertical"
|
|
android:visibility="visible"
|
|
android:gravity="center">
|
|
|
|
<ImageView
|
|
android:layout_width="100dp"
|
|
android:layout_height="110dp"
|
|
android:background="@drawable/empty"/>
|
|
|
|
<TextView
|
|
android:id="@+id/tv_empty_tip"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="65dp"
|
|
android:gravity="center"
|
|
android:textSize="18sp"
|
|
android:maxLines="2"
|
|
android:text="暂无数据\n请通过搜索设备或扫码连接设备"/>
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</LinearLayout>
|