layout_supple.xml
1.46 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
<?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:gravity="center_horizontal"
android:layout_height="match_parent">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/supple_information"
android:textSize="@dimen/bigFont"
android:textColor="@color/black"/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/weight"
android:textSize="@dimen/normalFont"
android:textColor="@color/black"/>
<EditText
android:id="@+id/weightEdit"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="number"
style="@style/scan_edit_style">
<requestFocus />
</EditText>
</LinearLayout>
<Button
android:id="@+id/suppleEnsure"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/ensure"
android:textSize="@dimen/normalFont"
android:textColor="@color/black"/>
</LinearLayout>