zhangzengfei
2022-01-10 4496b59ab27d569df1da7ef634e02273b3a9618a
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
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="@dimen/h120"
    android:background="@drawable/bg_write_border">
 
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="@dimen/h80"
        android:orientation="horizontal">
 
        <TextView
            android:id="@+id/deviceIp"
            style="@style/setting_text"
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_weight="1.3"
            android:gravity="center"
            android:text="" />
        <TextView
            android:id="@+id/deviceName"
            style="@style/setting_text"
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_weight="1"
            android:gravity="center"
            android:text="" />
        <LinearLayout
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_weight="2"
            android:gravity="center">
            <CheckBox
                android:id="@+id/valid"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="启用"
                android:button="@drawable/check_box_selector" />
 
            <ImageView
                android:id="@+id/deleteOfficeDeviceItem"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginLeft="@dimen/w25"
                android:background="@drawable/icon_delete" />
        </LinearLayout>
 
 
    </LinearLayout>
 
 
</RelativeLayout>