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
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    tools:context=".p_inputsn.ManualInputFragment">
 
    <ScrollView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:scrollbars="none">
 
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical">
 
 
            <ImageView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:scaleType="fitXY"
                android:src="@drawable/adddevice_pic_imei" />
 
            <TextView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginTop="20dp"
                android:gravity="center_vertical"
                android:paddingLeft="@dimen/add_device_common_margin_15"
                android:text="@string/add_device_input_imei_under_device"
                android:textColor="@color/c2"
                android:textSize="14dp" />
 
 
            <com.mm.android.deviceaddmodule.mobilecommon.widget.ClearEditText
                android:id="@+id/et_user_input"
                android:layout_width="match_parent"
                android:layout_height="@dimen/add_device_common_edit_height"
                android:layout_marginTop="@dimen/add_device_common_margin_15"
                android:background="@drawable/common_btn_bg_shape_gray"
                android:ellipsize="end"
                android:hint="@string/add_device_input_imei"
                android:imeOptions="actionSearch"
                android:inputType="text"
                android:maxLength="17"
                android:paddingLeft="@dimen/add_device_common_margin_15"
                android:paddingRight="10dp"
                android:singleLine="true"
                android:textColor="@color/c2"
                android:textColorHint="@color/c5"
                android:textCursorDrawable="@drawable/text_cursor_drawable"
                android:textSize="16dp">
 
                <requestFocus />
            </com.mm.android.deviceaddmodule.mobilecommon.widget.ClearEditText>
 
            <TextView
                android:layout_width="match_parent"
                android:layout_height="20dp"
                android:layout_gravity="bottom|center_horizontal"
                android:layout_marginTop="@dimen/add_device_common_margin_10"
                android:paddingLeft="@dimen/add_device_common_margin_15"
                android:text="@string/add_device_input_imei_by_user_tip"
                android:textSize="12sp"
                android:visibility="gone"/>
 
            <TextView
                android:id="@+id/next_btn"
                style="@style/add_device_btn_style"
                android:layout_marginTop="50dp"
                android:text="@string/common_next" />
        </LinearLayout>
    </ScrollView>
</LinearLayout>