123
hxb
2022-11-24 4ec30c4521bad6a7e63b5e6a8b6c867f2a2b3c5b
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/bind_success_rl"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/c43">
 
    <ScrollView
        android:id="@+id/bind_success_sv"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_above="@+id/tv_next"
        android:scrollbars="none">
 
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:background="@color/c43"
            android:orientation="vertical">
 
            <!--title-->
            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:orientation="vertical">
 
                <FrameLayout
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content">
 
                    <!--<ImageView
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content"
                        android:scaleType="fitXY"
                        android:src="@drawable/adddevice_icon_success_background" />-->
 
                    <ImageView
                        android:id="@+id/dev_img"
                        android:layout_width="125dp"
                        android:layout_height="150dp"
                        android:layout_gravity="center|bottom"
                        android:layout_marginTop="60dp"
                        android:src="@drawable/adddevice_icon_success_default" />
 
                    <ImageView
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:layout_gravity="center|bottom"
                        android:layout_marginLeft="50dp"
                        android:layout_marginBottom="40dp"
                        android:src="@drawable/adddevice_icon_success" />
                </FrameLayout>
 
                <TextView
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_gravity="center"
                    android:text="@string/add_device_add_successfully"
                    android:textColor="@color/c2"
                    android:textSize="20dp" />
 
                <TextView
                    android:visibility="invisible"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_gravity="center"
                    android:layout_marginTop="13dp"
                    android:text="@string/add_device_name_for_device"
                    android:textColor="@color/c5"
                    android:textSize="15sp" />
 
                <com.mm.android.deviceaddmodule.mobilecommon.widget.ClearEditText
                    android:visibility="invisible"
                    android:id="@+id/device_name_input"
                    android:layout_width="match_parent"
                    android:layout_height="@dimen/add_device_common_edit_height"
                    android:layout_marginTop="@dimen/add_device_common_margin_10"
                    android:background="@color/transparent"
                    android:gravity="center"
                    android:hint="@string/device_manager_input_device_name"
                    android:imeOptions="actionSearch"
                    android:inputType="text"
                    android:paddingLeft="@dimen/add_device_common_margin_15"
                    android:paddingRight="10dp"
                    android:singleLine="true"
                    android:textColor="@color/c2"
                    android:textColorHint="@color/c51"
                    android:textCursorDrawable="@drawable/text_cursor_drawable"
                    android:textSize="17sp">
 
                    <requestFocus />
                </com.mm.android.deviceaddmodule.mobilecommon.widget.ClearEditText>
            </LinearLayout>
 
            <View
                android:layout_width="match_parent"
                android:layout_height="0.5dp"
                android:layout_marginLeft="@dimen/add_device_common_margin_15"
                android:layout_marginTop="@dimen/dp_10"
                android:layout_marginRight="@dimen/add_device_common_margin_15"
                android:background="@color/c8" />
 
            <TextView
                android:id="@+id/tv_modify_device_pwd"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginLeft="15dp"
                android:layout_marginTop="12dp"
                android:layout_marginRight="15dp"
                android:visibility="gone"
                android:textSize="@dimen/f2" />
        </LinearLayout>
    </ScrollView>
 
    <TextView
        android:id="@+id/tv_next"
        style="@style/add_device_btn_style"
        android:layout_alignParentBottom="true"
        android:layout_marginTop="@dimen/add_device_common_margin_10"
        android:layout_marginBottom="@dimen/add_device_common_margin_15"
        android:text="@string/common_complete" />
</RelativeLayout>