|
|
@@ -0,0 +1,837 @@ |
|
|
|
<?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="match_parent"> |
|
|
|
|
|
|
|
<ScrollView |
|
|
|
android:layout_width="match_parent" |
|
|
|
android:layout_height="match_parent" |
|
|
|
android:layout_above="@id/ll2" |
|
|
|
> |
|
|
|
<LinearLayout |
|
|
|
android:layout_width="match_parent" |
|
|
|
android:layout_height="match_parent" |
|
|
|
android:orientation="vertical"> |
|
|
|
|
|
|
|
<LinearLayout |
|
|
|
android:layout_width="match_parent" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:layout_marginTop="@dimen/dp_20"> |
|
|
|
|
|
|
|
<TextView |
|
|
|
android:layout_width="wrap_content" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:layout_alignParentRight="true" |
|
|
|
android:layout_centerVertical="true" |
|
|
|
android:layout_marginStart="@dimen/dp_20" |
|
|
|
android:minWidth="60dp" |
|
|
|
android:textSize="32sp" |
|
|
|
android:text="设备号" /> |
|
|
|
|
|
|
|
<EditText |
|
|
|
android:imeOptions="actionDone" |
|
|
|
android:id="@+id/edt_deviceNum" |
|
|
|
android:layout_width="200dp" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:layout_marginStart="5dp" |
|
|
|
android:background="@drawable/input_bj" |
|
|
|
android:hint="请输入设备号" |
|
|
|
android:inputType="number" |
|
|
|
android:gravity="center" |
|
|
|
android:maxLines="1" |
|
|
|
android:textSize="32sp" |
|
|
|
|
|
|
|
android:padding="3dp" |
|
|
|
android:text="1"/> |
|
|
|
|
|
|
|
<Button |
|
|
|
android:id="@+id/device_num_save" |
|
|
|
android:layout_width="140dp" |
|
|
|
android:layout_height="50dp" |
|
|
|
android:layout_marginEnd="@dimen/dp_20" |
|
|
|
android:layout_marginStart="20dp" |
|
|
|
android:background="@drawable/button1" |
|
|
|
android:text="确定" |
|
|
|
android:textSize="32sp" /> |
|
|
|
|
|
|
|
<TextView |
|
|
|
android:id="@+id/tvDeviceNum" |
|
|
|
android:layout_width="wrap_content" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:text="1号设备" |
|
|
|
android:layout_marginStart="300" |
|
|
|
android:textColor="@color/red_primary_dark" |
|
|
|
android:textSize="36sp" |
|
|
|
android:textStyle="bold" |
|
|
|
/> |
|
|
|
</LinearLayout> |
|
|
|
<LinearLayout |
|
|
|
android:layout_width="match_parent" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:layout_marginEnd="400dp" |
|
|
|
android:layout_marginStart="150dp" |
|
|
|
> |
|
|
|
|
|
|
|
<TextView |
|
|
|
android:layout_width="0dp" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:layout_weight="1" |
|
|
|
android:text="位置下限" |
|
|
|
android:gravity="center" |
|
|
|
android:textSize="32sp" /> |
|
|
|
|
|
|
|
<TextView |
|
|
|
android:layout_width="0dp" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:gravity="center" |
|
|
|
android:layout_weight="1" |
|
|
|
android:text="位置上限" |
|
|
|
android:textSize="32sp" /> |
|
|
|
</LinearLayout> |
|
|
|
|
|
|
|
<LinearLayout |
|
|
|
android:layout_width="match_parent" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:layout_marginTop="@dimen/dp_20"> |
|
|
|
|
|
|
|
<TextView |
|
|
|
android:layout_width="wrap_content" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:layout_alignParentRight="true" |
|
|
|
android:layout_centerVertical="true" |
|
|
|
android:layout_marginStart="@dimen/dp_20" |
|
|
|
android:minWidth="60dp" |
|
|
|
android:textSize="32sp" |
|
|
|
android:text="原点位置" /> |
|
|
|
|
|
|
|
<EditText |
|
|
|
android:imeOptions="actionDone" |
|
|
|
android:id="@+id/edit_ydw1" |
|
|
|
android:layout_width="140dp" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:layout_marginStart="5dp" |
|
|
|
android:layout_weight="1" |
|
|
|
android:background="@drawable/input_bj" |
|
|
|
android:hint="请输入位置" |
|
|
|
android:inputType="number" |
|
|
|
android:maxLines="1" |
|
|
|
android:textSize="32sp" |
|
|
|
android:padding="3dp" |
|
|
|
android:text="0"/> |
|
|
|
|
|
|
|
<EditText |
|
|
|
android:imeOptions="actionDone" |
|
|
|
android:id="@+id/edit_ydw2" |
|
|
|
android:layout_width="140dp" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:layout_marginStart="5dp" |
|
|
|
android:layout_weight="1" |
|
|
|
android:background="@drawable/input_bj" |
|
|
|
android:hint="请输入位置" |
|
|
|
android:inputType="number" |
|
|
|
android:maxLines="1" |
|
|
|
android:padding="3dp" |
|
|
|
android:textSize="32sp" |
|
|
|
android:text="0"/> |
|
|
|
|
|
|
|
<RelativeLayout |
|
|
|
android:id="@+id/ydw_status" |
|
|
|
android:layout_width="40dp" |
|
|
|
android:layout_height="40dp" |
|
|
|
android:layout_gravity="center_vertical" |
|
|
|
android:layout_marginStart="10dp" |
|
|
|
android:layout_marginEnd="10dp" |
|
|
|
android:background="@mipmap/status_y" /> |
|
|
|
|
|
|
|
<Button |
|
|
|
android:id="@+id/ydw_save" |
|
|
|
android:layout_width="140dp" |
|
|
|
android:layout_height="50dp" |
|
|
|
android:layout_marginEnd="@dimen/dp_20" |
|
|
|
android:background="@drawable/button1" |
|
|
|
android:text="保存" |
|
|
|
android:textSize="32sp" /> |
|
|
|
|
|
|
|
<Button |
|
|
|
android:id="@+id/ydw_button" |
|
|
|
android:layout_width="140dp" |
|
|
|
android:layout_height="50dp" |
|
|
|
|
|
|
|
android:layout_marginEnd="@dimen/dp_20" |
|
|
|
android:background="@drawable/bg_btn_login_selected" |
|
|
|
android:text="回原点" |
|
|
|
android:textSize="32sp" /> |
|
|
|
</LinearLayout> |
|
|
|
|
|
|
|
<LinearLayout |
|
|
|
android:layout_width="match_parent" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:layout_marginTop="@dimen/dp_20"> |
|
|
|
|
|
|
|
<TextView |
|
|
|
android:layout_width="wrap_content" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:layout_alignParentRight="true" |
|
|
|
android:layout_centerVertical="true" |
|
|
|
android:layout_marginStart="@dimen/dp_20" |
|
|
|
android:textSize="32sp" |
|
|
|
android:minWidth="60dp" |
|
|
|
android:text="维护位置" /> |
|
|
|
|
|
|
|
<EditText |
|
|
|
android:imeOptions="actionDone" |
|
|
|
android:id="@+id/edit_whw1" |
|
|
|
android:layout_width="140dp" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:layout_marginStart="5dp" |
|
|
|
android:layout_weight="1" |
|
|
|
android:background="@drawable/input_bj" |
|
|
|
android:hint="请输入位置" |
|
|
|
android:inputType="number" |
|
|
|
android:maxLines="1" |
|
|
|
android:padding="3dp" |
|
|
|
android:textSize="32sp" |
|
|
|
android:text="0"/> |
|
|
|
|
|
|
|
<EditText |
|
|
|
android:imeOptions="actionDone" |
|
|
|
android:id="@+id/edit_whw2" |
|
|
|
android:layout_width="140dp" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:layout_marginStart="5dp" |
|
|
|
android:layout_weight="1" |
|
|
|
android:background="@drawable/input_bj" |
|
|
|
android:hint="请输入位置" |
|
|
|
android:inputType="number" |
|
|
|
android:maxLines="1" |
|
|
|
android:padding="3dp" |
|
|
|
android:textSize="32sp" |
|
|
|
android:text="0"/> |
|
|
|
|
|
|
|
<RelativeLayout |
|
|
|
android:id="@+id/whw_status" |
|
|
|
android:layout_width="40dp" |
|
|
|
android:layout_height="40dp" |
|
|
|
android:layout_gravity="center_vertical" |
|
|
|
android:layout_marginStart="10dp" |
|
|
|
android:layout_marginEnd="10dp" |
|
|
|
android:background="@mipmap/status_y" /> |
|
|
|
|
|
|
|
<Button |
|
|
|
android:id="@+id/whw_save" |
|
|
|
android:layout_width="140dp" |
|
|
|
android:layout_height="50dp" |
|
|
|
|
|
|
|
android:layout_marginEnd="@dimen/dp_20" |
|
|
|
android:background="@drawable/button1" |
|
|
|
android:text="保存" |
|
|
|
android:textSize="32sp" /> |
|
|
|
|
|
|
|
<Button |
|
|
|
android:id="@+id/whw_button" |
|
|
|
android:layout_width="140dp" |
|
|
|
android:layout_height="50dp" |
|
|
|
|
|
|
|
android:layout_marginEnd="@dimen/dp_20" |
|
|
|
android:background="@drawable/bg_btn_login_selected" |
|
|
|
android:text="维护位" |
|
|
|
android:textSize="32sp" /> |
|
|
|
</LinearLayout> |
|
|
|
|
|
|
|
<LinearLayout |
|
|
|
android:layout_width="match_parent" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:layout_marginTop="@dimen/dp_20"> |
|
|
|
|
|
|
|
<TextView |
|
|
|
android:layout_width="wrap_content" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:layout_alignParentRight="true" |
|
|
|
android:layout_centerVertical="true" |
|
|
|
android:layout_marginStart="@dimen/dp_20" |
|
|
|
android:textSize="32sp" |
|
|
|
android:minWidth="60dp" |
|
|
|
android:text="洗锅位置" /> |
|
|
|
|
|
|
|
<EditText |
|
|
|
android:imeOptions="actionDone" |
|
|
|
android:id="@+id/edit_xgw1" |
|
|
|
android:layout_width="140dp" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:layout_marginStart="5dp" |
|
|
|
android:layout_weight="1" |
|
|
|
android:background="@drawable/input_bj" |
|
|
|
android:hint="请输入位置" |
|
|
|
android:inputType="number" |
|
|
|
android:maxLines="1" |
|
|
|
android:padding="3dp" |
|
|
|
android:textSize="32sp" |
|
|
|
android:text="0"/> |
|
|
|
|
|
|
|
<EditText |
|
|
|
android:imeOptions="actionDone" |
|
|
|
android:id="@+id/edit_xgw2" |
|
|
|
android:layout_width="140dp" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:layout_marginStart="5dp" |
|
|
|
android:layout_weight="1" |
|
|
|
android:background="@drawable/input_bj" |
|
|
|
android:hint="请输入位置" |
|
|
|
android:inputType="number" |
|
|
|
android:maxLines="1" |
|
|
|
android:padding="3dp" |
|
|
|
android:textSize="32sp" |
|
|
|
android:text="0"/> |
|
|
|
|
|
|
|
<RelativeLayout |
|
|
|
android:id="@+id/xgw_status" |
|
|
|
android:layout_width="40dp" |
|
|
|
android:layout_height="40dp" |
|
|
|
android:layout_gravity="center_vertical" |
|
|
|
android:layout_marginStart="10dp" |
|
|
|
android:layout_marginEnd="10dp" |
|
|
|
android:background="@mipmap/status_y" /> |
|
|
|
|
|
|
|
<Button |
|
|
|
android:id="@+id/xgw_save" |
|
|
|
android:layout_width="140dp" |
|
|
|
android:layout_height="50dp" |
|
|
|
|
|
|
|
android:layout_marginEnd="@dimen/dp_20" |
|
|
|
android:background="@drawable/button1" |
|
|
|
android:text="保存" |
|
|
|
android:textSize="32sp" /> |
|
|
|
|
|
|
|
<Button |
|
|
|
android:id="@+id/xgw_button" |
|
|
|
android:layout_width="140dp" |
|
|
|
android:layout_height="50dp" |
|
|
|
|
|
|
|
android:layout_marginEnd="@dimen/dp_20" |
|
|
|
android:background="@drawable/bg_btn_login_selected" |
|
|
|
android:text="洗锅位" |
|
|
|
android:textSize="32sp" /> |
|
|
|
</LinearLayout> |
|
|
|
|
|
|
|
<LinearLayout |
|
|
|
android:layout_width="match_parent" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:layout_marginTop="@dimen/dp_20"> |
|
|
|
|
|
|
|
<TextView |
|
|
|
android:layout_width="wrap_content" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:layout_alignParentRight="true" |
|
|
|
android:layout_centerVertical="true" |
|
|
|
android:layout_marginStart="@dimen/dp_20" |
|
|
|
android:textSize="32sp" |
|
|
|
android:minWidth="60dp" |
|
|
|
android:text="出餐位置" /> |
|
|
|
|
|
|
|
<EditText |
|
|
|
android:imeOptions="actionDone" |
|
|
|
android:id="@+id/edit_ccw1" |
|
|
|
android:layout_width="140dp" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:layout_marginStart="5dp" |
|
|
|
android:layout_weight="1" |
|
|
|
android:background="@drawable/input_bj" |
|
|
|
android:hint="请输入位置" |
|
|
|
android:inputType="number" |
|
|
|
android:maxLines="1" |
|
|
|
android:padding="3dp" |
|
|
|
android:textSize="32sp" |
|
|
|
android:text="0"/> |
|
|
|
|
|
|
|
<EditText |
|
|
|
android:imeOptions="actionDone" |
|
|
|
android:id="@+id/edit_ccw2" |
|
|
|
android:layout_width="140dp" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:layout_marginStart="5dp" |
|
|
|
android:layout_weight="1" |
|
|
|
android:background="@drawable/input_bj" |
|
|
|
android:hint="请输入位置" |
|
|
|
android:inputType="number" |
|
|
|
android:maxLines="1" |
|
|
|
android:padding="3dp" |
|
|
|
android:textSize="32sp" |
|
|
|
android:text="0"/> |
|
|
|
<RelativeLayout |
|
|
|
android:id="@+id/ccw_status" |
|
|
|
android:layout_width="40dp" |
|
|
|
android:layout_height="40dp" |
|
|
|
android:layout_gravity="center_vertical" |
|
|
|
|
|
|
|
android:layout_marginStart="10dp" |
|
|
|
android:layout_marginEnd="10dp" |
|
|
|
android:background="@mipmap/status_y" /> |
|
|
|
|
|
|
|
<Button |
|
|
|
android:id="@+id/ccw_save" |
|
|
|
android:layout_width="140dp" |
|
|
|
android:layout_height="50dp" |
|
|
|
|
|
|
|
android:layout_marginEnd="@dimen/dp_20" |
|
|
|
android:background="@drawable/button1" |
|
|
|
android:text="保存" |
|
|
|
android:textSize="32sp" /> |
|
|
|
|
|
|
|
<Button |
|
|
|
android:id="@+id/ccw_button" |
|
|
|
android:layout_width="140dp" |
|
|
|
android:layout_height="50dp" |
|
|
|
|
|
|
|
android:layout_marginEnd="@dimen/dp_20" |
|
|
|
android:background="@drawable/bg_btn_login_selected" |
|
|
|
android:text="出餐位" |
|
|
|
android:textSize="32sp" /> |
|
|
|
</LinearLayout> |
|
|
|
|
|
|
|
<LinearLayout |
|
|
|
android:layout_width="match_parent" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:layout_marginTop="@dimen/dp_20"> |
|
|
|
|
|
|
|
<TextView |
|
|
|
android:layout_width="wrap_content" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:layout_alignParentRight="true" |
|
|
|
android:layout_centerVertical="true" |
|
|
|
android:layout_marginStart="@dimen/dp_20" |
|
|
|
android:textSize="32sp" |
|
|
|
android:minWidth="60dp" |
|
|
|
android:text="抽料位置" /> |
|
|
|
|
|
|
|
<EditText |
|
|
|
android:imeOptions="actionDone" |
|
|
|
android:id="@+id/edit_ctl1" |
|
|
|
android:layout_width="140dp" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:layout_marginStart="5dp" |
|
|
|
android:layout_weight="1" |
|
|
|
android:background="@drawable/input_bj" |
|
|
|
android:hint="请输入位置" |
|
|
|
android:inputType="number" |
|
|
|
android:maxLines="1" |
|
|
|
android:padding="3dp" |
|
|
|
android:textSize="32sp" |
|
|
|
android:text="0"/> |
|
|
|
|
|
|
|
<EditText |
|
|
|
android:imeOptions="actionDone" |
|
|
|
android:id="@+id/edit_ctl2" |
|
|
|
android:layout_width="140dp" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:layout_marginStart="5dp" |
|
|
|
android:layout_weight="1" |
|
|
|
android:background="@drawable/input_bj" |
|
|
|
android:hint="请输入位置" |
|
|
|
android:inputType="number" |
|
|
|
android:maxLines="1" |
|
|
|
android:padding="3dp" |
|
|
|
android:textSize="32sp" |
|
|
|
android:text="0"/> |
|
|
|
|
|
|
|
<RelativeLayout |
|
|
|
android:layout_width="wrap_content" |
|
|
|
android:layout_height="match_parent"> |
|
|
|
|
|
|
|
<RelativeLayout |
|
|
|
android:id="@+id/ctl_status" |
|
|
|
android:layout_width="40dp" |
|
|
|
android:layout_height="40dp" |
|
|
|
android:layout_gravity="center_vertical" |
|
|
|
android:layout_marginStart="10dp" |
|
|
|
android:layout_marginEnd="10dp" |
|
|
|
android:background="@mipmap/status_y" /> |
|
|
|
</RelativeLayout> |
|
|
|
|
|
|
|
<Button |
|
|
|
android:id="@+id/ctl_save" |
|
|
|
android:layout_width="140dp" |
|
|
|
android:layout_height="50dp" |
|
|
|
|
|
|
|
android:layout_marginEnd="@dimen/dp_20" |
|
|
|
android:background="@drawable/button1" |
|
|
|
android:text="保存" |
|
|
|
android:textSize="32sp" /> |
|
|
|
|
|
|
|
<Button |
|
|
|
android:id="@+id/ctl_button" |
|
|
|
android:layout_width="140dp" |
|
|
|
android:layout_height="50dp" |
|
|
|
|
|
|
|
android:layout_marginEnd="@dimen/dp_20" |
|
|
|
android:background="@drawable/bg_btn_login_selected" |
|
|
|
android:text="抽料位" |
|
|
|
android:textSize="32sp" /> |
|
|
|
</LinearLayout> |
|
|
|
|
|
|
|
<LinearLayout |
|
|
|
android:layout_width="match_parent" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:layout_marginTop="@dimen/dp_20"> |
|
|
|
|
|
|
|
<TextView |
|
|
|
android:layout_width="wrap_content" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:layout_alignParentRight="true" |
|
|
|
android:layout_centerVertical="true" |
|
|
|
android:layout_marginStart="@dimen/dp_20" |
|
|
|
android:textSize="32sp" |
|
|
|
android:minWidth="60dp" |
|
|
|
android:text="1#炒制位\n炒菜位高" /> |
|
|
|
|
|
|
|
<EditText |
|
|
|
android:imeOptions="actionDone" |
|
|
|
android:id="@+id/edit_czw11" |
|
|
|
android:layout_width="140dp" |
|
|
|
android:layout_gravity="center_vertical" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:layout_marginStart="5dp" |
|
|
|
android:layout_weight="1" |
|
|
|
android:background="@drawable/input_bj" |
|
|
|
android:hint="请输入位置" |
|
|
|
android:inputType="number" |
|
|
|
android:maxLines="1" |
|
|
|
android:padding="3dp" |
|
|
|
android:textSize="32sp" |
|
|
|
android:text="0"/> |
|
|
|
|
|
|
|
<EditText |
|
|
|
android:imeOptions="actionDone" |
|
|
|
android:id="@+id/edit_czw12" |
|
|
|
android:layout_gravity="center_vertical" |
|
|
|
android:layout_width="140dp" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:layout_marginStart="5dp" |
|
|
|
android:layout_weight="1" |
|
|
|
android:background="@drawable/input_bj" |
|
|
|
android:hint="请输入位置" |
|
|
|
android:inputType="number" |
|
|
|
android:maxLines="1" |
|
|
|
android:padding="3dp" |
|
|
|
android:textSize="32sp" |
|
|
|
android:text="0"/> |
|
|
|
|
|
|
|
<RelativeLayout |
|
|
|
android:id="@+id/czw1_status" |
|
|
|
android:layout_width="40dp" |
|
|
|
android:layout_height="40dp" |
|
|
|
android:layout_gravity="center_vertical" |
|
|
|
android:layout_marginStart="10dp" |
|
|
|
android:layout_marginEnd="10dp" |
|
|
|
android:background="@mipmap/status_y" /> |
|
|
|
|
|
|
|
<Button |
|
|
|
android:id="@+id/czw1_save" |
|
|
|
android:layout_width="140dp" |
|
|
|
android:layout_height="50dp" |
|
|
|
|
|
|
|
android:layout_marginEnd="@dimen/dp_20" |
|
|
|
android:background="@drawable/button1" |
|
|
|
android:text="保存" |
|
|
|
android:textSize="32sp" /> |
|
|
|
|
|
|
|
<Button |
|
|
|
android:id="@+id/czw1_button" |
|
|
|
android:layout_width="140dp" |
|
|
|
android:layout_height="50dp" |
|
|
|
|
|
|
|
android:layout_marginEnd="@dimen/dp_20" |
|
|
|
android:background="@drawable/bg_btn_login_selected" |
|
|
|
android:text="1#位置" |
|
|
|
android:textSize="32sp" /> |
|
|
|
</LinearLayout> |
|
|
|
|
|
|
|
<LinearLayout |
|
|
|
android:layout_width="match_parent" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:layout_marginTop="@dimen/dp_20"> |
|
|
|
|
|
|
|
<TextView |
|
|
|
android:layout_width="wrap_content" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:textSize="32sp" |
|
|
|
android:layout_alignParentRight="true" |
|
|
|
android:layout_centerVertical="true" |
|
|
|
android:layout_marginStart="@dimen/dp_20" |
|
|
|
android:minWidth="60dp" |
|
|
|
android:text="2#炒制位\n炒菜位高" /> |
|
|
|
|
|
|
|
<EditText |
|
|
|
android:imeOptions="actionDone" |
|
|
|
android:id="@+id/edit_czw21" |
|
|
|
android:layout_width="140dp" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:layout_marginStart="5dp" |
|
|
|
android:layout_weight="1" |
|
|
|
android:background="@drawable/input_bj" |
|
|
|
android:hint="请输入位置" |
|
|
|
android:inputType="number" |
|
|
|
android:maxLines="1" |
|
|
|
android:padding="3dp" |
|
|
|
android:layout_gravity="center_vertical" |
|
|
|
android:textSize="32sp" |
|
|
|
android:text="0"/> |
|
|
|
|
|
|
|
<EditText |
|
|
|
android:imeOptions="actionDone" |
|
|
|
android:id="@+id/edit_czw22" |
|
|
|
android:layout_width="140dp" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:layout_marginStart="5dp" |
|
|
|
android:layout_weight="1" |
|
|
|
android:layout_gravity="center_vertical" |
|
|
|
android:background="@drawable/input_bj" |
|
|
|
android:hint="请输入位置" |
|
|
|
android:inputType="number" |
|
|
|
android:maxLines="1" |
|
|
|
android:padding="3dp" |
|
|
|
android:textSize="32sp" |
|
|
|
android:text="0"/> |
|
|
|
|
|
|
|
<RelativeLayout |
|
|
|
android:id="@+id/czw2_status" |
|
|
|
android:layout_width="40dp" |
|
|
|
android:layout_height="40dp" |
|
|
|
android:layout_gravity="center_vertical" |
|
|
|
android:layout_marginStart="10dp" |
|
|
|
android:layout_marginEnd="10dp" |
|
|
|
android:background="@mipmap/status_y" /> |
|
|
|
|
|
|
|
<Button |
|
|
|
android:id="@+id/czw2_save" |
|
|
|
android:layout_width="140dp" |
|
|
|
android:layout_height="50dp" |
|
|
|
|
|
|
|
android:layout_marginEnd="@dimen/dp_20" |
|
|
|
android:background="@drawable/button1" |
|
|
|
android:text="保存" |
|
|
|
android:textSize="32sp" /> |
|
|
|
|
|
|
|
<Button |
|
|
|
android:id="@+id/czw2_button" |
|
|
|
android:layout_width="140dp" |
|
|
|
android:layout_height="50dp" |
|
|
|
|
|
|
|
android:layout_marginEnd="@dimen/dp_20" |
|
|
|
android:background="@drawable/bg_btn_login_selected" |
|
|
|
android:text="2#位置" |
|
|
|
android:textSize="32sp" /> |
|
|
|
</LinearLayout> |
|
|
|
|
|
|
|
<LinearLayout |
|
|
|
android:layout_width="match_parent" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:layout_marginTop="@dimen/dp_20"> |
|
|
|
|
|
|
|
<TextView |
|
|
|
android:layout_width="wrap_content" |
|
|
|
android:textSize="32sp" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:layout_alignParentRight="true" |
|
|
|
android:layout_centerVertical="true" |
|
|
|
android:layout_marginStart="@dimen/dp_20" |
|
|
|
android:minWidth="60dp" |
|
|
|
android:text="3#炒制位" /> |
|
|
|
|
|
|
|
<EditText |
|
|
|
android:imeOptions="actionDone" |
|
|
|
android:id="@+id/edit_czw31" |
|
|
|
android:layout_width="140dp" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:layout_marginStart="5dp" |
|
|
|
android:layout_weight="1" |
|
|
|
android:background="@drawable/input_bj" |
|
|
|
android:hint="请输入位置" |
|
|
|
android:inputType="number" |
|
|
|
android:maxLines="1" |
|
|
|
android:padding="3dp" |
|
|
|
android:textSize="32sp" |
|
|
|
android:text="0"/> |
|
|
|
|
|
|
|
<EditText |
|
|
|
android:imeOptions="actionDone" |
|
|
|
android:id="@+id/edit_czw32" |
|
|
|
android:layout_width="140dp" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:layout_marginStart="5dp" |
|
|
|
android:layout_weight="1" |
|
|
|
android:background="@drawable/input_bj" |
|
|
|
android:hint="请输入位置" |
|
|
|
android:inputType="number" |
|
|
|
android:maxLines="1" |
|
|
|
android:padding="3dp" |
|
|
|
android:textSize="32sp" |
|
|
|
android:text="0"/> |
|
|
|
|
|
|
|
<RelativeLayout |
|
|
|
android:id="@+id/czw3_status" |
|
|
|
android:layout_width="40dp" |
|
|
|
android:layout_height="40dp" |
|
|
|
android:layout_gravity="center_vertical" |
|
|
|
android:layout_marginStart="10dp" |
|
|
|
android:layout_marginEnd="10dp" |
|
|
|
android:background="@mipmap/status_y" /> |
|
|
|
|
|
|
|
<Button |
|
|
|
android:id="@+id/czw3_save" |
|
|
|
android:layout_width="140dp" |
|
|
|
android:layout_height="50dp" |
|
|
|
android:layout_marginEnd="@dimen/dp_20" |
|
|
|
android:background="@drawable/button1" |
|
|
|
android:text="保存" |
|
|
|
android:textSize="32sp" /> |
|
|
|
|
|
|
|
<Button |
|
|
|
android:id="@+id/czw3_button" |
|
|
|
android:layout_width="140dp" |
|
|
|
android:layout_height="50dp" |
|
|
|
|
|
|
|
android:layout_marginEnd="@dimen/dp_20" |
|
|
|
android:background="@drawable/bg_btn_login_selected" |
|
|
|
android:text="3#位置" |
|
|
|
android:textSize="32sp" /> |
|
|
|
</LinearLayout> |
|
|
|
|
|
|
|
<LinearLayout |
|
|
|
android:layout_width="match_parent" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:layout_marginTop="@dimen/dp_20"> |
|
|
|
|
|
|
|
<TextView |
|
|
|
android:layout_width="wrap_content" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:layout_alignParentRight="true" |
|
|
|
android:textSize="32sp" |
|
|
|
android:layout_centerVertical="true" |
|
|
|
android:layout_marginStart="@dimen/dp_20" |
|
|
|
android:minWidth="60dp" |
|
|
|
android:text="工作范围" /> |
|
|
|
|
|
|
|
<EditText |
|
|
|
android:imeOptions="actionDone" |
|
|
|
android:id="@+id/edit_gzfw1" |
|
|
|
android:layout_width="140dp" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:layout_marginStart="5dp" |
|
|
|
android:layout_weight="1" |
|
|
|
android:background="@drawable/input_bj" |
|
|
|
android:hint="请输入位置" |
|
|
|
android:inputType="number" |
|
|
|
android:maxLines="1" |
|
|
|
android:padding="3dp" |
|
|
|
android:textSize="32sp" |
|
|
|
android:text="0"/> |
|
|
|
|
|
|
|
<EditText |
|
|
|
android:imeOptions="actionDone" |
|
|
|
android:id="@+id/edit_gzfw2" |
|
|
|
android:layout_width="140dp" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:layout_marginStart="5dp" |
|
|
|
android:layout_weight="1" |
|
|
|
android:background="@drawable/input_bj" |
|
|
|
android:hint="请输入位置" |
|
|
|
android:inputType="number" |
|
|
|
android:maxLines="1" |
|
|
|
android:padding="3dp" |
|
|
|
android:textSize="32sp" |
|
|
|
android:text="0"/> |
|
|
|
|
|
|
|
<RelativeLayout |
|
|
|
android:layout_width="40dp" |
|
|
|
android:layout_height="40dp" |
|
|
|
android:layout_gravity="center_vertical" |
|
|
|
android:layout_marginStart="10dp" |
|
|
|
android:layout_marginEnd="10dp" |
|
|
|
/> |
|
|
|
|
|
|
|
<Button |
|
|
|
android:id="@+id/gzfw_save" |
|
|
|
android:layout_width="140dp" |
|
|
|
android:layout_height="50dp" |
|
|
|
android:layout_marginEnd="@dimen/dp_20" |
|
|
|
android:background="@drawable/button1" |
|
|
|
android:text="保存" |
|
|
|
android:textSize="32sp" /> |
|
|
|
|
|
|
|
<View |
|
|
|
android:layout_width="140dp" |
|
|
|
android:layout_marginEnd="@dimen/dp_20" |
|
|
|
android:layout_height="wrap_content"/> |
|
|
|
</LinearLayout> |
|
|
|
|
|
|
|
</LinearLayout> |
|
|
|
</ScrollView> |
|
|
|
|
|
|
|
<LinearLayout |
|
|
|
android:id="@+id/ll2" |
|
|
|
android:layout_alignParentBottom="true" |
|
|
|
android:layout_width="match_parent" |
|
|
|
android:orientation="vertical" |
|
|
|
android:layout_marginBottom="10dp" |
|
|
|
android:layout_height="wrap_content"> |
|
|
|
<LinearLayout |
|
|
|
android:layout_width="match_parent" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:layout_marginBottom="10dp" |
|
|
|
android:layout_marginTop="@dimen/dp_20"> |
|
|
|
|
|
|
|
<TextView |
|
|
|
android:layout_width="wrap_content" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:layout_alignParentRight="true" |
|
|
|
android:layout_centerVertical="true" |
|
|
|
android:layout_marginStart="@dimen/dp_20" |
|
|
|
android:textSize="32sp" |
|
|
|
android:minWidth="60dp" |
|
|
|
android:text="炒锅当前位置:" /> |
|
|
|
|
|
|
|
<TextView |
|
|
|
android:id="@+id/chaoguo_weizhi" |
|
|
|
android:layout_width="wrap_content" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:layout_alignParentRight="true" |
|
|
|
android:layout_centerVertical="true" |
|
|
|
android:layout_marginStart="@dimen/dp_20" |
|
|
|
android:minWidth="60dp" |
|
|
|
android:textSize="36sp" |
|
|
|
android:text="10005" |
|
|
|
android:textColor="@color/deep_orange_primary" |
|
|
|
android:textStyle="bold"/> |
|
|
|
</LinearLayout> |
|
|
|
|
|
|
|
<LinearLayout |
|
|
|
android:layout_marginBottom="10dp" |
|
|
|
android:layout_width="wrap_content" |
|
|
|
android:gravity="center_horizontal" |
|
|
|
android:layout_gravity="center_horizontal" |
|
|
|
android:layout_height="wrap_content"> |
|
|
|
|
|
|
|
<Button |
|
|
|
android:id="@+id/gkzx_button" |
|
|
|
android:layout_width="250dp" |
|
|
|
android:layout_height="120dp" |
|
|
|
android:layout_marginEnd="@dimen/dp_20" |
|
|
|
android:background="@drawable/bg_round15_yellow_btn" |
|
|
|
android:text="锅口控制\n正向移动" |
|
|
|
android:textSize="32sp" |
|
|
|
android:textColor="@color/white"/> |
|
|
|
|
|
|
|
<Button |
|
|
|
android:id="@+id/gkfx_button" |
|
|
|
android:layout_width="250dp" |
|
|
|
android:layout_height="120dp" |
|
|
|
android:layout_marginStart="50dp" |
|
|
|
android:layout_marginEnd="@dimen/dp_20" |
|
|
|
android:background="@drawable/bg_round15_yellow_btn" |
|
|
|
android:text="锅口控制\n反向移动" |
|
|
|
android:textSize="32sp" |
|
|
|
android:textColor="@color/white"/> |
|
|
|
</LinearLayout> |
|
|
|
</LinearLayout> |
|
|
|
|
|
|
|
</RelativeLayout> |