view_qty.xml
3.62 KB
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
<?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:orientation="vertical"
android:background="@color/white"
android:layout_height="wrap_content"
tools:ignore="MissingDefaultResource">
<TextView
android:id="@+id/titleView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:textSize="@dimen/bigFont"
android:textColor="@color/black"
android:text="TextView" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:layout_marginBottom="10dp"
android:gravity="center"
android:orientation="horizontal">
<Button
android:id="@+id/qtyZero"
android:layout_width="60dp"
android:layout_height="wrap_content"
android:layout_gravity="left"
android:text="0" />
<Button
android:id="@+id/qtyMine"
android:layout_width="40dp"
android:layout_height="wrap_content"
android:text="-" />
<EditText
android:id="@+id/qtyValue"
android:text="400"
android:textAlignment="center"
android:textSize="@dimen/bigFont"
android:layout_width="100dp"
android:inputType="numberDecimal"
android:layout_height="wrap_content" />
<Button
android:id="@+id/qtyAdd"
android:text="+"
android:layout_width="40dp"
android:layout_height="wrap_content" />
<Button
android:id="@+id/qtyMax"
android:text="全收"
android:layout_width="60dp"
android:layout_height="wrap_content" />
</LinearLayout>
<LinearLayout
android:id="@+id/pkgView"
android:visibility="gone"
android:gravity="center"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<Spinner
android:id="@+id/pkgNumSpinner"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<TextView
android:id="@+id/pkgNameView"
android:text="箱"
android:textSize="22dp"
android:textColor="@color/black"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>
<FrameLayout
android:layout_marginTop="15dp"
android:layout_marginBottom="10dp"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<Button
android:id="@+id/resetBtn"
android:layout_width="120dp"
android:layout_height="wrap_content"
android:layout_gravity="left"
android:layout_marginLeft="20dp"
android:background="@drawable/red_button_bg"
android:text="@string/btn_cancel"
android:textSize="@dimen/bigFont" />
<Button
android:id="@+id/ensureBtn"
android:layout_width="120dp"
android:layout_height="wrap_content"
android:layout_gravity="right"
android:layout_marginRight="20dp"
android:background="@drawable/red_button_bg"
android:text="@string/btn_ensure"
android:textSize="@dimen/bigFont" />
</FrameLayout>
</LinearLayout>