<?xml version="1.0" encoding="utf-8"?>
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
android:orientation="vertical" android:layout_width="match_parent"
|
android:layout_height="match_parent">
|
<TextView
|
android:id="@+id/device_manager_back"
|
android:layout_width="wrap_content"
|
android:layout_height="30dp"
|
android:text="< 设备管理"
|
android:layout_marginLeft="10dp"
|
android:layout_marginTop="10dp"
|
android:layout_centerVertical="true"
|
android:textColor="#8BD2F6"
|
/>
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:background="@color/colorSearch"
|
android:orientation="vertical">
|
<EditText
|
android:id="@+id/visitor_manager_search_et"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginTop="5.5dp"
|
android:layout_marginBottom="5.5dp"
|
android:layout_marginLeft="4dp"
|
android:layout_marginRight="4dp"
|
android:gravity="center"
|
android:hint="Search"
|
android:textColorHint="@color/colorSearch"
|
android:background="@drawable/visitor_register_search_et"/>
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:orientation="vertical"
|
android:background="@android:color/white">
|
|
<TextView
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:textSize="@dimen/text_size_big"
|
android:textColor="@color/colorText_5"
|
android:background="@color/colorBackground"
|
android:padding="22dp"
|
android:text="@string/device_set"/>
|
<include
|
android:id="@+id/device_wifi"
|
layout="@layout/fragment_device_left_row"
|
android:layout_height="wrap_content"
|
android:layout_width="match_parent"/>
|
<include
|
android:id="@+id/device_landline"
|
layout="@layout/fragment_device_left_row"
|
android:layout_height="wrap_content"
|
android:layout_width="match_parent"/>
|
<include
|
android:id="@+id/device_school"
|
layout="@layout/fragment_device_left_row"
|
android:layout_height="wrap_content"
|
android:layout_width="match_parent"/>
|
|
<TextView
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:textSize="@dimen/text_size_big"
|
android:textColor="@color/colorText_5"
|
android:background="@color/colorBackground"
|
android:padding="22dp"
|
android:text="@string/device_camera"/>
|
<include
|
android:id="@+id/device_camera1"
|
layout="@layout/fragment_device_left_row"
|
android:layout_height="wrap_content"
|
android:layout_width="match_parent"/>
|
<include
|
android:id="@+id/device_camera2"
|
layout="@layout/fragment_device_left_row"
|
android:layout_height="wrap_content"
|
android:layout_width="match_parent"/>
|
</LinearLayout>
|
</LinearLayout>
|
</LinearLayout>
|