| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434 |
- <?xml version="1.0" encoding="utf-8"?>
- <layout xmlns:android="http://schemas.android.com/apk/res/android">
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_margin="20dp"
- android:background="@drawable/home_card_bg"
- android:orientation="vertical">
- <LinearLayout
- android:id="@+id/title_layout"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:gravity="center_vertical"
- android:orientation="horizontal"
- android:paddingHorizontal="10dp"
- android:paddingVertical="5dp">
- <ImageView
- android:layout_width="20dp"
- android:layout_height="20dp"
- android:src="@mipmap/icon_data_manage_menu_user_manage" />
- <TextView
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginLeft="10dp"
- android:layout_weight="1"
- android:text="@string/create_sop_title"
- android:textColor="@color/black"
- android:textSize="24sp" />
- <TextView
- android:id="@+id/back"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginLeft="10dp"
- android:background="@drawable/common_dialog_btn"
- android:paddingHorizontal="20dp"
- android:text="@string/back"
- android:textColor="@color/black"
- android:textSize="20sp" />
- </LinearLayout>
- <View
- android:layout_width="match_parent"
- android:layout_height="1dp"
- android:background="@color/black" />
- <LinearLayout
- android:id="@+id/base_info_layout"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginHorizontal="20dp"
- android:layout_marginTop="20dp"
- android:layout_marginBottom="10dp"
- android:background="@drawable/home_card_bg"
- android:gravity="center_vertical"
- android:orientation="vertical">
- <TextView
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginLeft="10dp"
- android:layout_weight="1"
- android:text="@string/base_info_title"
- android:textColor="@color/black"
- android:textSize="24sp" />
- <View
- android:layout_width="match_parent"
- android:layout_height="1dp"
- android:background="@color/black" />
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="20dp"
- android:gravity="center_vertical"
- android:orientation="horizontal"
- android:paddingHorizontal="16dp">
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="@string/sop_workstation"
- android:textColor="@color/black"
- android:textSize="18sp" />
- <TextView
- android:id="@+id/workstation_tv"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginLeft="10dp"
- android:background="@drawable/bg_common_input"
- android:drawableRight="@drawable/icon_drop_down"
- android:hint="@string/please_select_sop_workstation"
- android:maxLines="1"
- android:paddingHorizontal="10dp"
- android:paddingVertical="2dp"
- android:singleLine="true"
- android:textColor="@color/black"
- android:textSize="18sp" />
- </LinearLayout>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="20dp"
- android:gravity="center_vertical"
- android:orientation="horizontal"
- android:paddingHorizontal="16dp">
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="@string/lock_mode"
- android:textColor="@color/black"
- android:textSize="18sp" />
- <TextView
- android:id="@+id/lock_mode_tv"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginLeft="10dp"
- android:background="@drawable/bg_common_input"
- android:drawableRight="@drawable/icon_drop_down"
- android:hint="@string/please_select_lock_mode"
- android:maxLines="1"
- android:paddingHorizontal="10dp"
- android:paddingVertical="2dp"
- android:singleLine="true"
- android:textColor="@color/black"
- android:textSize="18sp" />
- </LinearLayout>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="20dp"
- android:layout_marginBottom="20dp"
- android:gravity="center_vertical"
- android:orientation="horizontal"
- android:paddingHorizontal="16dp">
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="@string/create_sop_name"
- android:textColor="@color/black"
- android:textSize="18sp" />
- <EditText
- android:id="@+id/sop_name_et"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginLeft="10dp"
- android:background="@drawable/bg_common_input"
- android:hint="@string/please_input_sop_name"
- android:maxLines="1"
- android:paddingHorizontal="10dp"
- android:paddingVertical="2dp"
- android:singleLine="true"
- android:textColor="@color/black"
- android:textSize="18sp" />
- </LinearLayout>
- </LinearLayout>
- <LinearLayout
- android:id="@+id/point_info_layout"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginHorizontal="20dp"
- android:layout_marginVertical="10dp"
- android:background="@drawable/home_card_bg"
- android:gravity="center_vertical"
- android:orientation="vertical">
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="horizontal">
- <TextView
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginLeft="10dp"
- android:layout_weight="1"
- android:text="@string/point_info_title"
- android:textColor="@color/black"
- android:textSize="24sp" />
- <TextView
- android:id="@+id/select_point_tv"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginLeft="10dp"
- android:layout_marginRight="10dp"
- android:background="@drawable/common_dialog_btn"
- android:paddingHorizontal="20dp"
- android:text="@string/select"
- android:textColor="@color/black"
- android:textSize="20sp" />
- </LinearLayout>
- <View
- android:layout_width="match_parent"
- android:layout_height="1dp"
- android:background="@color/black" />
- <FrameLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent">
- <androidx.recyclerview.widget.RecyclerView
- android:id="@+id/point_rv"
- android:layout_width="match_parent"
- android:layout_height="240dp"
- android:paddingBottom="10dp" />
- <LinearLayout
- android:id="@+id/no_selected_point_layout"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@drawable/card_white_bg"
- android:gravity="center"
- android:orientation="vertical">
- <ImageView
- android:layout_width="80dp"
- android:layout_height="80dp"
- android:src="@drawable/icon_add_box" />
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:gravity="center"
- android:paddingHorizontal="20dp"
- android:paddingVertical="10dp"
- android:text="@string/please_must_select_at_least_one_point"
- android:textColor="@color/black"
- android:textSize="24sp" />
- </LinearLayout>
- </FrameLayout>
- </LinearLayout>
- <LinearLayout
- android:id="@+id/member_info_layout"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginHorizontal="20dp"
- android:layout_marginVertical="10dp"
- android:background="@drawable/home_card_bg"
- android:gravity="center_vertical"
- android:orientation="vertical">
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="horizontal">
- <TextView
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginLeft="10dp"
- android:layout_weight="1"
- android:text="@string/member_info_title"
- android:textColor="@color/black"
- android:textSize="24sp" />
- <TextView
- android:id="@+id/select_member_tv"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginLeft="10dp"
- android:layout_marginRight="10dp"
- android:background="@drawable/common_dialog_btn"
- android:paddingHorizontal="20dp"
- android:text="@string/select"
- android:textColor="@color/black"
- android:textSize="20sp" />
- </LinearLayout>
- <View
- android:layout_width="match_parent"
- android:layout_height="1dp"
- android:background="@color/black" />
- <FrameLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent">
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:gravity="center"
- android:orientation="horizontal">
- <LinearLayout
- android:layout_width="wrap_content"
- android:layout_height="match_parent"
- android:background="@drawable/home_card_bg"
- android:orientation="vertical">
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:gravity="center"
- android:paddingHorizontal="20dp"
- android:paddingVertical="10dp"
- android:text="@string/locker"
- android:textColor="@color/black"
- android:textSize="24sp" />
- <View
- android:layout_width="match_parent"
- android:layout_height="1dp"
- android:background="@color/black" />
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:gravity="center"
- android:paddingBottom="10dp"
- android:orientation="vertical">
- <ImageView
- android:layout_width="50dp"
- android:layout_height="50dp"
- android:layout_marginTop="10dp"
- android:src="@mipmap/icon_data_manage_menu_user_manage"
- android:tint="@color/black" />
- <TextView
- android:id="@+id/locker_name"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:gravity="center"
- android:textColor="@color/black"
- android:textSize="20sp" />
- </LinearLayout>
- </LinearLayout>
- <LinearLayout
- android:id="@+id/select_colocker_layout"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_weight="1"
- android:background="@drawable/home_card_bg"
- android:orientation="vertical">
- <TextView
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:gravity="center"
- android:paddingHorizontal="20dp"
- android:paddingVertical="10dp"
- android:text="@string/colocker"
- android:textColor="@color/black"
- android:textSize="24sp" />
- <View
- android:layout_width="match_parent"
- android:layout_height="1dp"
- android:background="@color/black" />
- <androidx.recyclerview.widget.RecyclerView
- android:id="@+id/colocker_rv"
- android:layout_width="wrap_content"
- android:layout_height="match_parent" />
- </LinearLayout>
- </LinearLayout>
- <LinearLayout
- android:id="@+id/no_selected_member_layout"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@drawable/card_white_bg"
- android:gravity="center"
- android:orientation="vertical">
- <ImageView
- android:layout_width="80dp"
- android:layout_height="80dp"
- android:src="@drawable/icon_add_box" />
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:gravity="center"
- android:paddingHorizontal="20dp"
- android:paddingVertical="10dp"
- android:text="@string/please_select_member"
- android:textColor="@color/black"
- android:textSize="24sp" />
- </LinearLayout>
- </FrameLayout>
- </LinearLayout>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:gravity="right"
- android:orientation="horizontal"
- android:padding="10dp">
- <TextView
- android:id="@+id/confirm"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginLeft="10dp"
- android:background="@drawable/common_dialog_btn"
- android:paddingHorizontal="20dp"
- android:text="@string/confirm"
- android:textColor="@color/black"
- android:textSize="20sp" />
- <TextView
- android:id="@+id/cancel"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginLeft="10dp"
- android:background="@drawable/common_dialog_btn"
- android:paddingHorizontal="20dp"
- android:text="@string/cancel"
- android:textColor="@color/black"
- android:textSize="20sp" />
- </LinearLayout>
- </LinearLayout>
- </layout>
|