|
@@ -53,422 +53,435 @@
|
|
|
android:layout_height="@dimen/divider_line_space"
|
|
android:layout_height="@dimen/divider_line_space"
|
|
|
android:background="@color/black" />
|
|
android:background="@color/black" />
|
|
|
|
|
|
|
|
- <LinearLayout
|
|
|
|
|
- android:id="@+id/base_info_layout"
|
|
|
|
|
- android:layout_width="match_parent"
|
|
|
|
|
- android:layout_height="wrap_content"
|
|
|
|
|
- android:layout_marginHorizontal="@dimen/common_spacing_2x"
|
|
|
|
|
- android:layout_marginTop="@dimen/common_spacing_2x"
|
|
|
|
|
- android:layout_marginBottom="@dimen/common_spacing"
|
|
|
|
|
- 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="@dimen/common_spacing"
|
|
|
|
|
- android:layout_weight="1"
|
|
|
|
|
- android:text="@string/base_info_title"
|
|
|
|
|
- android:textColor="@color/black"
|
|
|
|
|
- android:textSize="@dimen/normal_text_size_18" />
|
|
|
|
|
-
|
|
|
|
|
- <View
|
|
|
|
|
- android:layout_width="match_parent"
|
|
|
|
|
- android:layout_height="@dimen/divider_line_space"
|
|
|
|
|
- android:background="@color/black" />
|
|
|
|
|
-
|
|
|
|
|
-
|
|
|
|
|
- <LinearLayout
|
|
|
|
|
- android:layout_width="match_parent"
|
|
|
|
|
- android:layout_height="wrap_content"
|
|
|
|
|
- android:layout_marginTop="@dimen/common_spacing_2x"
|
|
|
|
|
- android:gravity="center_vertical"
|
|
|
|
|
- android:orientation="horizontal"
|
|
|
|
|
- android:paddingHorizontal="@dimen/dialog_content_normal_padding_horizontal">
|
|
|
|
|
-
|
|
|
|
|
- <TextView
|
|
|
|
|
- android:layout_width="wrap_content"
|
|
|
|
|
- android:layout_height="wrap_content"
|
|
|
|
|
- android:text="@string/job_workstation"
|
|
|
|
|
- android:textColor="@color/black"
|
|
|
|
|
- android:textSize="@dimen/common_text_size" />
|
|
|
|
|
-
|
|
|
|
|
- <TextView
|
|
|
|
|
- android:id="@+id/workstation_tv"
|
|
|
|
|
- android:layout_width="match_parent"
|
|
|
|
|
- android:layout_height="wrap_content"
|
|
|
|
|
- android:layout_marginLeft="@dimen/common_spacing"
|
|
|
|
|
- android:background="@drawable/bg_common_input"
|
|
|
|
|
- android:drawableRight="@mipmap/icon_drop_down"
|
|
|
|
|
- android:hint="@string/please_select_job_workstation"
|
|
|
|
|
- android:maxLines="1"
|
|
|
|
|
- android:paddingHorizontal="@dimen/common_spacing"
|
|
|
|
|
- android:paddingVertical="2dp"
|
|
|
|
|
- android:singleLine="true"
|
|
|
|
|
- android:textColor="@color/black"
|
|
|
|
|
- android:textSize="@dimen/common_text_size" />
|
|
|
|
|
- </LinearLayout>
|
|
|
|
|
-
|
|
|
|
|
- <LinearLayout
|
|
|
|
|
- android:layout_width="match_parent"
|
|
|
|
|
- android:layout_height="wrap_content"
|
|
|
|
|
- android:layout_marginTop="@dimen/common_spacing_2x"
|
|
|
|
|
- android:gravity="center_vertical"
|
|
|
|
|
- android:orientation="horizontal"
|
|
|
|
|
- android:paddingHorizontal="@dimen/dialog_content_normal_padding_horizontal">
|
|
|
|
|
-
|
|
|
|
|
- <TextView
|
|
|
|
|
- android:layout_width="wrap_content"
|
|
|
|
|
- android:layout_height="wrap_content"
|
|
|
|
|
- android:text="@string/workflow_mode"
|
|
|
|
|
- android:textColor="@color/black"
|
|
|
|
|
- android:textSize="@dimen/common_text_size" />
|
|
|
|
|
-
|
|
|
|
|
- <TextView
|
|
|
|
|
- android:id="@+id/lock_mode_tv"
|
|
|
|
|
- android:layout_width="match_parent"
|
|
|
|
|
- android:layout_height="wrap_content"
|
|
|
|
|
- android:layout_marginLeft="@dimen/common_spacing"
|
|
|
|
|
- android:background="@drawable/bg_common_input"
|
|
|
|
|
- android:drawableRight="@mipmap/icon_drop_down"
|
|
|
|
|
- android:hint="@string/please_select_flow_mode"
|
|
|
|
|
- android:maxLines="1"
|
|
|
|
|
- android:paddingHorizontal="@dimen/common_spacing"
|
|
|
|
|
- android:paddingVertical="2dp"
|
|
|
|
|
- android:singleLine="true"
|
|
|
|
|
- android:textColor="@color/black"
|
|
|
|
|
- android:textSize="@dimen/common_text_size" />
|
|
|
|
|
- </LinearLayout>
|
|
|
|
|
-
|
|
|
|
|
- <LinearLayout
|
|
|
|
|
- android:layout_width="match_parent"
|
|
|
|
|
- android:layout_height="wrap_content"
|
|
|
|
|
- android:layout_marginTop="@dimen/common_spacing_2x"
|
|
|
|
|
- android:layout_marginBottom="@dimen/common_spacing_2x"
|
|
|
|
|
- android:gravity="center_vertical"
|
|
|
|
|
- android:orientation="horizontal"
|
|
|
|
|
- android:paddingHorizontal="@dimen/dialog_content_normal_padding_horizontal">
|
|
|
|
|
-
|
|
|
|
|
- <TextView
|
|
|
|
|
- android:layout_width="wrap_content"
|
|
|
|
|
- android:layout_height="wrap_content"
|
|
|
|
|
- android:text="@string/create_job_name"
|
|
|
|
|
- android:textColor="@color/black"
|
|
|
|
|
- android:textSize="@dimen/common_text_size" />
|
|
|
|
|
-
|
|
|
|
|
- <EditText
|
|
|
|
|
- android:id="@+id/job_name_et"
|
|
|
|
|
- android:layout_width="match_parent"
|
|
|
|
|
- android:layout_height="wrap_content"
|
|
|
|
|
- android:layout_marginLeft="@dimen/common_spacing"
|
|
|
|
|
- android:background="@drawable/bg_common_input"
|
|
|
|
|
- android:hint="@string/please_input_job_name"
|
|
|
|
|
- android:maxLines="1"
|
|
|
|
|
- android:paddingHorizontal="@dimen/common_spacing"
|
|
|
|
|
- android:paddingVertical="2dp"
|
|
|
|
|
- android:singleLine="true"
|
|
|
|
|
- android:textColor="@color/black"
|
|
|
|
|
- android:textSize="@dimen/common_text_size" />
|
|
|
|
|
- </LinearLayout>
|
|
|
|
|
- </LinearLayout>
|
|
|
|
|
-
|
|
|
|
|
- <LinearLayout
|
|
|
|
|
|
|
+ <androidx.core.widget.NestedScrollView
|
|
|
android:layout_width="match_parent"
|
|
android:layout_width="match_parent"
|
|
|
- android:layout_height="0dp"
|
|
|
|
|
|
|
+ android:layout_height="match_parent"
|
|
|
android:layout_weight="1"
|
|
android:layout_weight="1"
|
|
|
- android:orientation="vertical">
|
|
|
|
|
|
|
+ android:fillViewport="true">
|
|
|
|
|
|
|
|
<LinearLayout
|
|
<LinearLayout
|
|
|
- android:id="@+id/workflow_mode_layout"
|
|
|
|
|
android:layout_width="match_parent"
|
|
android:layout_width="match_parent"
|
|
|
- android:layout_height="0dp"
|
|
|
|
|
- android:layout_marginHorizontal="@dimen/common_spacing_2x"
|
|
|
|
|
- android:layout_marginVertical="@dimen/common_spacing"
|
|
|
|
|
- android:layout_weight="1"
|
|
|
|
|
- android:background="@drawable/home_card_bg"
|
|
|
|
|
- android:gravity="center_vertical"
|
|
|
|
|
|
|
+ android:layout_height="match_parent"
|
|
|
android:orientation="vertical">
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<LinearLayout
|
|
<LinearLayout
|
|
|
|
|
+ android:id="@+id/base_info_layout"
|
|
|
android:layout_width="match_parent"
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
|
- android:orientation="horizontal">
|
|
|
|
|
|
|
+ android:layout_marginHorizontal="@dimen/common_spacing_2x"
|
|
|
|
|
+ android:layout_marginTop="@dimen/common_spacing_2x"
|
|
|
|
|
+ android:layout_marginBottom="@dimen/common_spacing"
|
|
|
|
|
+ android:background="@drawable/home_card_bg"
|
|
|
|
|
+ android:gravity="center_vertical"
|
|
|
|
|
+ android:orientation="vertical">
|
|
|
|
|
|
|
|
<TextView
|
|
<TextView
|
|
|
android:layout_width="match_parent"
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
|
- android:layout_gravity="center_vertical"
|
|
|
|
|
android:layout_marginLeft="@dimen/common_spacing"
|
|
android:layout_marginLeft="@dimen/common_spacing"
|
|
|
android:layout_weight="1"
|
|
android:layout_weight="1"
|
|
|
- android:text="@string/workflow_mode"
|
|
|
|
|
|
|
+ android:text="@string/base_info_title"
|
|
|
android:textColor="@color/black"
|
|
android:textColor="@color/black"
|
|
|
android:textSize="@dimen/normal_text_size_18" />
|
|
android:textSize="@dimen/normal_text_size_18" />
|
|
|
|
|
|
|
|
- <TextView
|
|
|
|
|
- android:id="@+id/workflow_mode_setting_tv"
|
|
|
|
|
- android:layout_width="wrap_content"
|
|
|
|
|
- android:layout_height="wrap_content"
|
|
|
|
|
- android:layout_margin="@dimen/common_spacing"
|
|
|
|
|
- android:background="@drawable/common_btn"
|
|
|
|
|
- android:paddingHorizontal="@dimen/common_spacing_2x"
|
|
|
|
|
- android:text="@string/settings"
|
|
|
|
|
- android:textColor="@color/black"
|
|
|
|
|
- android:textSize="@dimen/common_btn_text_size" />
|
|
|
|
|
- </LinearLayout>
|
|
|
|
|
-
|
|
|
|
|
- <View
|
|
|
|
|
- android:layout_width="match_parent"
|
|
|
|
|
- android:layout_height="@dimen/divider_line_space"
|
|
|
|
|
- android:background="@color/black" />
|
|
|
|
|
-
|
|
|
|
|
- <FrameLayout
|
|
|
|
|
- android:layout_width="match_parent"
|
|
|
|
|
- android:layout_height="match_parent"
|
|
|
|
|
- android:background="@drawable/card_white_bg">
|
|
|
|
|
-
|
|
|
|
|
- <androidx.recyclerview.widget.RecyclerView
|
|
|
|
|
- android:id="@+id/workflow_rv"
|
|
|
|
|
|
|
+ <View
|
|
|
android:layout_width="match_parent"
|
|
android:layout_width="match_parent"
|
|
|
- android:layout_height="match_parent"
|
|
|
|
|
- android:paddingHorizontal="@dimen/common_spacing"
|
|
|
|
|
- android:scrollbars="horizontal" />
|
|
|
|
|
-
|
|
|
|
|
- <TextView
|
|
|
|
|
- android:id="@+id/select_workflow_tip"
|
|
|
|
|
- android:layout_width="match_parent"
|
|
|
|
|
- android:layout_height="match_parent"
|
|
|
|
|
- android:background="@drawable/card_white_bg"
|
|
|
|
|
- android:gravity="center"
|
|
|
|
|
- android:paddingHorizontal="@dimen/common_spacing_2x"
|
|
|
|
|
- android:paddingVertical="@dimen/common_spacing"
|
|
|
|
|
- android:text="@string/please_select_workflow_mode"
|
|
|
|
|
- android:textColor="@color/color_black50"
|
|
|
|
|
- android:textSize="@dimen/normal_text_size_18" />
|
|
|
|
|
- </FrameLayout>
|
|
|
|
|
- </LinearLayout>
|
|
|
|
|
|
|
+ android:layout_height="@dimen/divider_line_space"
|
|
|
|
|
+ android:background="@color/black" />
|
|
|
|
|
|
|
|
- <LinearLayout
|
|
|
|
|
- android:id="@+id/point_info_layout"
|
|
|
|
|
- android:layout_width="match_parent"
|
|
|
|
|
- android:layout_height="0dp"
|
|
|
|
|
- android:layout_marginHorizontal="@dimen/common_spacing_2x"
|
|
|
|
|
- android:layout_marginVertical="@dimen/common_spacing"
|
|
|
|
|
- android:layout_weight="1"
|
|
|
|
|
- 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
|
|
|
|
|
|
|
+ <LinearLayout
|
|
|
android:layout_width="match_parent"
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
|
- android:layout_gravity="center_vertical"
|
|
|
|
|
- android:layout_marginLeft="@dimen/common_spacing"
|
|
|
|
|
- android:layout_weight="1"
|
|
|
|
|
- android:text="@string/point_info_title"
|
|
|
|
|
- android:textColor="@color/black"
|
|
|
|
|
- android:textSize="@dimen/normal_text_size_18" />
|
|
|
|
|
-
|
|
|
|
|
- <TextView
|
|
|
|
|
- android:id="@+id/select_point_tv"
|
|
|
|
|
- android:layout_width="wrap_content"
|
|
|
|
|
- android:layout_height="wrap_content"
|
|
|
|
|
- android:layout_margin="@dimen/common_spacing"
|
|
|
|
|
- android:background="@drawable/common_btn"
|
|
|
|
|
- android:paddingHorizontal="@dimen/common_spacing_2x"
|
|
|
|
|
- android:text="@string/select"
|
|
|
|
|
- android:textColor="@color/black"
|
|
|
|
|
- android:textSize="@dimen/common_btn_text_size" />
|
|
|
|
|
- </LinearLayout>
|
|
|
|
|
-
|
|
|
|
|
- <View
|
|
|
|
|
- android:layout_width="match_parent"
|
|
|
|
|
- android:layout_height="@dimen/divider_line_space"
|
|
|
|
|
- android:background="@color/black" />
|
|
|
|
|
|
|
+ android:layout_marginTop="@dimen/common_spacing_2x"
|
|
|
|
|
+ android:gravity="center_vertical"
|
|
|
|
|
+ android:orientation="horizontal"
|
|
|
|
|
+ android:paddingHorizontal="@dimen/dialog_content_normal_padding_horizontal">
|
|
|
|
|
|
|
|
- <FrameLayout
|
|
|
|
|
- android:layout_width="match_parent"
|
|
|
|
|
- android:layout_height="match_parent">
|
|
|
|
|
|
|
+ <TextView
|
|
|
|
|
+ android:layout_width="wrap_content"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:text="@string/job_workstation"
|
|
|
|
|
+ android:textColor="@color/black"
|
|
|
|
|
+ android:textSize="@dimen/common_text_size" />
|
|
|
|
|
|
|
|
- <androidx.recyclerview.widget.RecyclerView
|
|
|
|
|
- android:id="@+id/point_rv"
|
|
|
|
|
- android:layout_width="match_parent"
|
|
|
|
|
- android:layout_height="match_parent"
|
|
|
|
|
- android:paddingBottom="@dimen/common_spacing" />
|
|
|
|
|
|
|
+ <TextView
|
|
|
|
|
+ android:id="@+id/workstation_tv"
|
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:layout_marginLeft="@dimen/common_spacing"
|
|
|
|
|
+ android:background="@drawable/bg_common_input"
|
|
|
|
|
+ android:drawableRight="@mipmap/icon_drop_down"
|
|
|
|
|
+ android:hint="@string/please_select_job_workstation"
|
|
|
|
|
+ android:maxLines="1"
|
|
|
|
|
+ android:paddingHorizontal="@dimen/common_spacing"
|
|
|
|
|
+ android:paddingVertical="2dp"
|
|
|
|
|
+ android:singleLine="true"
|
|
|
|
|
+ android:textColor="@color/black"
|
|
|
|
|
+ android:textSize="@dimen/common_text_size" />
|
|
|
|
|
+ </LinearLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
<LinearLayout
|
|
|
- android:id="@+id/no_selected_point_layout"
|
|
|
|
|
android:layout_width="match_parent"
|
|
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="@dimen/icon_add_point_or_member_size"
|
|
|
|
|
- android:layout_height="@dimen/icon_add_point_or_member_size"
|
|
|
|
|
- android:src="@drawable/icon_add_box" />
|
|
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:layout_marginTop="@dimen/common_spacing_2x"
|
|
|
|
|
+ android:gravity="center_vertical"
|
|
|
|
|
+ android:orientation="horizontal"
|
|
|
|
|
+ android:paddingHorizontal="@dimen/dialog_content_normal_padding_horizontal">
|
|
|
|
|
|
|
|
<TextView
|
|
<TextView
|
|
|
android:layout_width="wrap_content"
|
|
android:layout_width="wrap_content"
|
|
|
android:layout_height="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
|
- android:gravity="center"
|
|
|
|
|
- android:paddingHorizontal="@dimen/common_spacing_2x"
|
|
|
|
|
- android:paddingVertical="@dimen/common_spacing"
|
|
|
|
|
- android:text="@string/please_must_select_at_least_one_point"
|
|
|
|
|
- android:textColor="@color/color_black50"
|
|
|
|
|
- android:textSize="@dimen/normal_text_size_18" />
|
|
|
|
|
- </LinearLayout>
|
|
|
|
|
- </FrameLayout>
|
|
|
|
|
- </LinearLayout>
|
|
|
|
|
-
|
|
|
|
|
- <LinearLayout
|
|
|
|
|
- android:id="@+id/member_info_layout"
|
|
|
|
|
- android:layout_width="match_parent"
|
|
|
|
|
- android:layout_height="0dp"
|
|
|
|
|
- android:layout_marginHorizontal="@dimen/common_spacing_2x"
|
|
|
|
|
- android:layout_marginVertical="@dimen/common_spacing"
|
|
|
|
|
- android:layout_weight="1"
|
|
|
|
|
- android:background="@drawable/home_card_bg"
|
|
|
|
|
- android:gravity="center_vertical"
|
|
|
|
|
- android:orientation="vertical">
|
|
|
|
|
|
|
+ android:text="@string/workflow_mode"
|
|
|
|
|
+ android:textColor="@color/black"
|
|
|
|
|
+ android:textSize="@dimen/common_text_size" />
|
|
|
|
|
|
|
|
- <LinearLayout
|
|
|
|
|
- android:layout_width="match_parent"
|
|
|
|
|
- android:layout_height="wrap_content"
|
|
|
|
|
- android:orientation="horizontal">
|
|
|
|
|
|
|
+ <TextView
|
|
|
|
|
+ android:id="@+id/lock_mode_tv"
|
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:layout_marginLeft="@dimen/common_spacing"
|
|
|
|
|
+ android:background="@drawable/bg_common_input"
|
|
|
|
|
+ android:drawableRight="@mipmap/icon_drop_down"
|
|
|
|
|
+ android:hint="@string/please_select_flow_mode"
|
|
|
|
|
+ android:maxLines="1"
|
|
|
|
|
+ android:paddingHorizontal="@dimen/common_spacing"
|
|
|
|
|
+ android:paddingVertical="2dp"
|
|
|
|
|
+ android:singleLine="true"
|
|
|
|
|
+ android:textColor="@color/black"
|
|
|
|
|
+ android:textSize="@dimen/common_text_size" />
|
|
|
|
|
+ </LinearLayout>
|
|
|
|
|
|
|
|
- <TextView
|
|
|
|
|
|
|
+ <LinearLayout
|
|
|
android:layout_width="match_parent"
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
|
- android:layout_gravity="center_vertical"
|
|
|
|
|
- android:layout_marginLeft="@dimen/common_spacing"
|
|
|
|
|
- android:layout_weight="1"
|
|
|
|
|
- android:text="@string/member_info_title"
|
|
|
|
|
- android:textColor="@color/black"
|
|
|
|
|
- android:textSize="@dimen/normal_text_size_18" />
|
|
|
|
|
|
|
+ android:layout_marginTop="@dimen/common_spacing_2x"
|
|
|
|
|
+ android:layout_marginBottom="@dimen/common_spacing_2x"
|
|
|
|
|
+ android:gravity="center_vertical"
|
|
|
|
|
+ android:orientation="horizontal"
|
|
|
|
|
+ android:paddingHorizontal="@dimen/dialog_content_normal_padding_horizontal">
|
|
|
|
|
|
|
|
- <TextView
|
|
|
|
|
- android:id="@+id/select_member_tv"
|
|
|
|
|
- android:layout_width="wrap_content"
|
|
|
|
|
- android:layout_height="wrap_content"
|
|
|
|
|
- android:layout_margin="@dimen/common_spacing"
|
|
|
|
|
- android:background="@drawable/common_btn"
|
|
|
|
|
- android:paddingHorizontal="@dimen/common_spacing_2x"
|
|
|
|
|
- android:text="@string/select"
|
|
|
|
|
- android:textColor="@color/black"
|
|
|
|
|
- android:textSize="@dimen/common_btn_text_size" />
|
|
|
|
|
- </LinearLayout>
|
|
|
|
|
|
|
+ <TextView
|
|
|
|
|
+ android:layout_width="wrap_content"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:text="@string/create_job_name"
|
|
|
|
|
+ android:textColor="@color/black"
|
|
|
|
|
+ android:textSize="@dimen/common_text_size" />
|
|
|
|
|
|
|
|
- <View
|
|
|
|
|
- android:layout_width="match_parent"
|
|
|
|
|
- android:layout_height="@dimen/divider_line_space"
|
|
|
|
|
- android:background="@color/black" />
|
|
|
|
|
|
|
+ <EditText
|
|
|
|
|
+ android:id="@+id/job_name_et"
|
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:layout_marginLeft="@dimen/common_spacing"
|
|
|
|
|
+ android:background="@drawable/bg_common_input"
|
|
|
|
|
+ android:hint="@string/please_input_job_name"
|
|
|
|
|
+ android:maxLines="1"
|
|
|
|
|
+ android:paddingHorizontal="@dimen/common_spacing"
|
|
|
|
|
+ android:paddingVertical="2dp"
|
|
|
|
|
+ android:singleLine="true"
|
|
|
|
|
+ android:textColor="@color/black"
|
|
|
|
|
+ android:textSize="@dimen/common_text_size" />
|
|
|
|
|
+ </LinearLayout>
|
|
|
|
|
+ </LinearLayout>
|
|
|
|
|
|
|
|
- <FrameLayout
|
|
|
|
|
|
|
+ <LinearLayout
|
|
|
android:layout_width="match_parent"
|
|
android:layout_width="match_parent"
|
|
|
- android:layout_height="match_parent">
|
|
|
|
|
|
|
+ android:layout_height="0dp"
|
|
|
|
|
+ android:layout_weight="1"
|
|
|
|
|
+ android:orientation="vertical">
|
|
|
|
|
|
|
|
<LinearLayout
|
|
<LinearLayout
|
|
|
|
|
+ android:id="@+id/workflow_mode_layout"
|
|
|
android:layout_width="match_parent"
|
|
android:layout_width="match_parent"
|
|
|
- android:layout_height="match_parent"
|
|
|
|
|
- android:gravity="center"
|
|
|
|
|
- android:orientation="horizontal">
|
|
|
|
|
|
|
+ android:layout_height="0dp"
|
|
|
|
|
+ android:layout_marginHorizontal="@dimen/common_spacing_2x"
|
|
|
|
|
+ android:layout_marginVertical="@dimen/common_spacing"
|
|
|
|
|
+ android:layout_weight="1"
|
|
|
|
|
+ android:background="@drawable/home_card_bg"
|
|
|
|
|
+ android:gravity="center_vertical"
|
|
|
|
|
+ android:orientation="vertical">
|
|
|
|
|
|
|
|
<LinearLayout
|
|
<LinearLayout
|
|
|
- android:layout_width="0dp"
|
|
|
|
|
- android:layout_height="match_parent"
|
|
|
|
|
- android:layout_weight="1"
|
|
|
|
|
- android:background="@drawable/home_card_bg"
|
|
|
|
|
- android:orientation="vertical">
|
|
|
|
|
|
|
+ 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_gravity="center_vertical"
|
|
|
|
|
+ android:layout_marginLeft="@dimen/common_spacing"
|
|
|
|
|
+ android:layout_weight="1"
|
|
|
|
|
+ android:text="@string/workflow_mode"
|
|
|
|
|
+ android:textColor="@color/black"
|
|
|
|
|
+ android:textSize="@dimen/normal_text_size_18" />
|
|
|
|
|
|
|
|
<TextView
|
|
<TextView
|
|
|
|
|
+ android:id="@+id/workflow_mode_setting_tv"
|
|
|
android:layout_width="wrap_content"
|
|
android:layout_width="wrap_content"
|
|
|
android:layout_height="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
|
- android:layout_gravity="center"
|
|
|
|
|
- android:gravity="center"
|
|
|
|
|
|
|
+ android:layout_margin="@dimen/common_spacing"
|
|
|
|
|
+ android:background="@drawable/common_btn"
|
|
|
android:paddingHorizontal="@dimen/common_spacing_2x"
|
|
android:paddingHorizontal="@dimen/common_spacing_2x"
|
|
|
- android:paddingVertical="@dimen/common_spacing"
|
|
|
|
|
- android:text="@string/locker"
|
|
|
|
|
|
|
+ android:text="@string/settings"
|
|
|
android:textColor="@color/black"
|
|
android:textColor="@color/black"
|
|
|
- android:textSize="@dimen/normal_text_size_18" />
|
|
|
|
|
|
|
+ android:textSize="@dimen/common_btn_text_size" />
|
|
|
|
|
+ </LinearLayout>
|
|
|
|
|
|
|
|
- <View
|
|
|
|
|
- android:layout_width="match_parent"
|
|
|
|
|
- android:layout_height="@dimen/divider_line_space"
|
|
|
|
|
- android:background="@color/black" />
|
|
|
|
|
|
|
+ <View
|
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
|
+ android:layout_height="@dimen/divider_line_space"
|
|
|
|
|
+ android:background="@color/black" />
|
|
|
|
|
|
|
|
|
|
+ <FrameLayout
|
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
|
+ android:layout_height="match_parent"
|
|
|
|
|
+ android:background="@drawable/card_white_bg">
|
|
|
|
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
|
- android:id="@+id/locker_rv"
|
|
|
|
|
- android:layout_width="wrap_content"
|
|
|
|
|
|
|
+ android:id="@+id/workflow_rv"
|
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
android:layout_height="match_parent"
|
|
android:layout_height="match_parent"
|
|
|
- android:layout_gravity="center" />
|
|
|
|
|
- </LinearLayout>
|
|
|
|
|
-
|
|
|
|
|
- <LinearLayout
|
|
|
|
|
- android:id="@+id/select_colocker_layout"
|
|
|
|
|
- android:layout_width="0dp"
|
|
|
|
|
- android:layout_height="match_parent"
|
|
|
|
|
- android:layout_weight="1"
|
|
|
|
|
- android:background="@drawable/home_card_bg"
|
|
|
|
|
- android:orientation="vertical">
|
|
|
|
|
|
|
+ android:paddingHorizontal="@dimen/common_spacing"
|
|
|
|
|
+ android:scrollbars="horizontal" />
|
|
|
|
|
|
|
|
<TextView
|
|
<TextView
|
|
|
|
|
+ android:id="@+id/select_workflow_tip"
|
|
|
android:layout_width="match_parent"
|
|
android:layout_width="match_parent"
|
|
|
- android:layout_height="wrap_content"
|
|
|
|
|
|
|
+ android:layout_height="match_parent"
|
|
|
|
|
+ android:background="@drawable/card_white_bg"
|
|
|
android:gravity="center"
|
|
android:gravity="center"
|
|
|
android:paddingHorizontal="@dimen/common_spacing_2x"
|
|
android:paddingHorizontal="@dimen/common_spacing_2x"
|
|
|
android:paddingVertical="@dimen/common_spacing"
|
|
android:paddingVertical="@dimen/common_spacing"
|
|
|
- android:text="@string/colocker"
|
|
|
|
|
- android:layout_gravity="center"
|
|
|
|
|
- android:textColor="@color/black"
|
|
|
|
|
|
|
+ android:text="@string/please_select_workflow_mode"
|
|
|
|
|
+ android:textColor="@color/color_black50"
|
|
|
android:textSize="@dimen/normal_text_size_18" />
|
|
android:textSize="@dimen/normal_text_size_18" />
|
|
|
|
|
+ </FrameLayout>
|
|
|
|
|
+ </LinearLayout>
|
|
|
|
|
+
|
|
|
|
|
+ <LinearLayout
|
|
|
|
|
+ android:id="@+id/point_info_layout"
|
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
|
+ android:layout_height="0dp"
|
|
|
|
|
+ android:layout_marginHorizontal="@dimen/common_spacing_2x"
|
|
|
|
|
+ android:layout_marginVertical="@dimen/common_spacing"
|
|
|
|
|
+ android:layout_weight="1"
|
|
|
|
|
+ android:background="@drawable/home_card_bg"
|
|
|
|
|
+ android:gravity="center_vertical"
|
|
|
|
|
+ android:orientation="vertical">
|
|
|
|
|
|
|
|
- <View
|
|
|
|
|
|
|
+ <LinearLayout
|
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:orientation="horizontal">
|
|
|
|
|
+
|
|
|
|
|
+ <TextView
|
|
|
android:layout_width="match_parent"
|
|
android:layout_width="match_parent"
|
|
|
- android:layout_height="@dimen/divider_line_space"
|
|
|
|
|
- android:background="@color/black" />
|
|
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:layout_gravity="center_vertical"
|
|
|
|
|
+ android:layout_marginLeft="@dimen/common_spacing"
|
|
|
|
|
+ android:layout_weight="1"
|
|
|
|
|
+ android:text="@string/point_info_title"
|
|
|
|
|
+ android:textColor="@color/black"
|
|
|
|
|
+ android:textSize="@dimen/normal_text_size_18" />
|
|
|
|
|
|
|
|
- <androidx.recyclerview.widget.RecyclerView
|
|
|
|
|
- android:id="@+id/colocker_rv"
|
|
|
|
|
|
|
+ <TextView
|
|
|
|
|
+ android:id="@+id/select_point_tv"
|
|
|
android:layout_width="wrap_content"
|
|
android:layout_width="wrap_content"
|
|
|
- android:layout_height="match_parent" />
|
|
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:layout_margin="@dimen/common_spacing"
|
|
|
|
|
+ android:background="@drawable/common_btn"
|
|
|
|
|
+ android:paddingHorizontal="@dimen/common_spacing_2x"
|
|
|
|
|
+ android:text="@string/select"
|
|
|
|
|
+ android:textColor="@color/black"
|
|
|
|
|
+ android:textSize="@dimen/common_btn_text_size" />
|
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
|
+ <View
|
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
|
+ android:layout_height="@dimen/divider_line_space"
|
|
|
|
|
+ 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="match_parent"
|
|
|
|
|
+ android:paddingBottom="@dimen/common_spacing" />
|
|
|
|
|
+
|
|
|
|
|
+ <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="@dimen/icon_add_point_or_member_size"
|
|
|
|
|
+ android:layout_height="@dimen/icon_add_point_or_member_size"
|
|
|
|
|
+ android:src="@drawable/icon_add_box" />
|
|
|
|
|
+
|
|
|
|
|
+ <TextView
|
|
|
|
|
+ android:layout_width="wrap_content"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:gravity="center"
|
|
|
|
|
+ android:paddingHorizontal="@dimen/common_spacing_2x"
|
|
|
|
|
+ android:paddingVertical="@dimen/common_spacing"
|
|
|
|
|
+ android:text="@string/please_must_select_at_least_one_point"
|
|
|
|
|
+ android:textColor="@color/color_black50"
|
|
|
|
|
+ android:textSize="@dimen/normal_text_size_18" />
|
|
|
|
|
+ </LinearLayout>
|
|
|
|
|
+ </FrameLayout>
|
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
<LinearLayout
|
|
|
- android:id="@+id/no_selected_member_layout"
|
|
|
|
|
|
|
+ android:id="@+id/member_info_layout"
|
|
|
android:layout_width="match_parent"
|
|
android:layout_width="match_parent"
|
|
|
- android:layout_height="match_parent"
|
|
|
|
|
- android:background="@drawable/card_white_bg"
|
|
|
|
|
- android:gravity="center"
|
|
|
|
|
|
|
+ android:layout_height="0dp"
|
|
|
|
|
+ android:layout_marginHorizontal="@dimen/common_spacing_2x"
|
|
|
|
|
+ android:layout_marginVertical="@dimen/common_spacing"
|
|
|
|
|
+ android:layout_weight="1"
|
|
|
|
|
+ android:background="@drawable/home_card_bg"
|
|
|
|
|
+ android:gravity="center_vertical"
|
|
|
android:orientation="vertical">
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
- <ImageView
|
|
|
|
|
- android:layout_width="@dimen/icon_add_point_or_member_size"
|
|
|
|
|
- android:layout_height="@dimen/icon_add_point_or_member_size"
|
|
|
|
|
- android:src="@drawable/icon_add_box" />
|
|
|
|
|
-
|
|
|
|
|
- <TextView
|
|
|
|
|
- android:layout_width="wrap_content"
|
|
|
|
|
|
|
+ <LinearLayout
|
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
android:layout_height="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
|
- android:gravity="center"
|
|
|
|
|
- android:paddingHorizontal="@dimen/common_spacing_2x"
|
|
|
|
|
- android:paddingVertical="@dimen/common_spacing"
|
|
|
|
|
- android:text="@string/please_select_member"
|
|
|
|
|
- android:textColor="@color/color_black50"
|
|
|
|
|
- android:textSize="@dimen/normal_text_size_18" />
|
|
|
|
|
|
|
+ android:orientation="horizontal">
|
|
|
|
|
+
|
|
|
|
|
+ <TextView
|
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:layout_gravity="center_vertical"
|
|
|
|
|
+ android:layout_marginLeft="@dimen/common_spacing"
|
|
|
|
|
+ android:layout_weight="1"
|
|
|
|
|
+ android:text="@string/member_info_title"
|
|
|
|
|
+ android:textColor="@color/black"
|
|
|
|
|
+ android:textSize="@dimen/normal_text_size_18" />
|
|
|
|
|
+
|
|
|
|
|
+ <TextView
|
|
|
|
|
+ android:id="@+id/select_member_tv"
|
|
|
|
|
+ android:layout_width="wrap_content"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:layout_margin="@dimen/common_spacing"
|
|
|
|
|
+ android:background="@drawable/common_btn"
|
|
|
|
|
+ android:paddingHorizontal="@dimen/common_spacing_2x"
|
|
|
|
|
+ android:text="@string/select"
|
|
|
|
|
+ android:textColor="@color/black"
|
|
|
|
|
+ android:textSize="@dimen/common_btn_text_size" />
|
|
|
|
|
+ </LinearLayout>
|
|
|
|
|
+
|
|
|
|
|
+ <View
|
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
|
+ android:layout_height="@dimen/divider_line_space"
|
|
|
|
|
+ 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="0dp"
|
|
|
|
|
+ android:layout_height="match_parent"
|
|
|
|
|
+ android:layout_weight="1"
|
|
|
|
|
+ android:background="@drawable/home_card_bg"
|
|
|
|
|
+ android:orientation="vertical">
|
|
|
|
|
+
|
|
|
|
|
+ <TextView
|
|
|
|
|
+ android:layout_width="wrap_content"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:layout_gravity="center"
|
|
|
|
|
+ android:gravity="center"
|
|
|
|
|
+ android:paddingHorizontal="@dimen/common_spacing_2x"
|
|
|
|
|
+ android:paddingVertical="@dimen/common_spacing"
|
|
|
|
|
+ android:text="@string/locker"
|
|
|
|
|
+ android:textColor="@color/black"
|
|
|
|
|
+ android:textSize="@dimen/normal_text_size_18" />
|
|
|
|
|
+
|
|
|
|
|
+ <View
|
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
|
+ android:layout_height="@dimen/divider_line_space"
|
|
|
|
|
+ android:background="@color/black" />
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+ <androidx.recyclerview.widget.RecyclerView
|
|
|
|
|
+ android:id="@+id/locker_rv"
|
|
|
|
|
+ android:layout_width="wrap_content"
|
|
|
|
|
+ android:layout_height="match_parent"
|
|
|
|
|
+ android:layout_gravity="center" />
|
|
|
|
|
+ </LinearLayout>
|
|
|
|
|
+
|
|
|
|
|
+ <LinearLayout
|
|
|
|
|
+ android:id="@+id/select_colocker_layout"
|
|
|
|
|
+ android:layout_width="0dp"
|
|
|
|
|
+ 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:layout_gravity="center"
|
|
|
|
|
+ android:gravity="center"
|
|
|
|
|
+ android:paddingHorizontal="@dimen/common_spacing_2x"
|
|
|
|
|
+ android:paddingVertical="@dimen/common_spacing"
|
|
|
|
|
+ android:text="@string/colocker"
|
|
|
|
|
+ android:textColor="@color/black"
|
|
|
|
|
+ android:textSize="@dimen/normal_text_size_18" />
|
|
|
|
|
+
|
|
|
|
|
+ <View
|
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
|
+ android:layout_height="@dimen/divider_line_space"
|
|
|
|
|
+ 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="@dimen/icon_add_point_or_member_size"
|
|
|
|
|
+ android:layout_height="@dimen/icon_add_point_or_member_size"
|
|
|
|
|
+ android:src="@drawable/icon_add_box" />
|
|
|
|
|
+
|
|
|
|
|
+ <TextView
|
|
|
|
|
+ android:layout_width="wrap_content"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:gravity="center"
|
|
|
|
|
+ android:paddingHorizontal="@dimen/common_spacing_2x"
|
|
|
|
|
+ android:paddingVertical="@dimen/common_spacing"
|
|
|
|
|
+ android:text="@string/please_select_member"
|
|
|
|
|
+ android:textColor="@color/color_black50"
|
|
|
|
|
+ android:textSize="@dimen/normal_text_size_18" />
|
|
|
|
|
+ </LinearLayout>
|
|
|
|
|
+ </FrameLayout>
|
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
|
- </FrameLayout>
|
|
|
|
|
|
|
+ </LinearLayout>
|
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
|
- </LinearLayout>
|
|
|
|
|
|
|
+ </androidx.core.widget.NestedScrollView>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
<LinearLayout
|
|
|
android:layout_width="match_parent"
|
|
android:layout_width="match_parent"
|
|
@@ -495,31 +508,43 @@
|
|
|
android:layout_width="wrap_content"
|
|
android:layout_width="wrap_content"
|
|
|
android:layout_height="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
|
android:layout_marginRight="@dimen/common_spacing"
|
|
android:layout_marginRight="@dimen/common_spacing"
|
|
|
- android:background="@drawable/common_btn"
|
|
|
|
|
|
|
+ android:background="@drawable/common_btn_confirm"
|
|
|
|
|
+ android:drawableLeft="@mipmap/icon_confirm"
|
|
|
|
|
+ android:drawablePadding="@dimen/common_spacing"
|
|
|
|
|
+ android:gravity="center"
|
|
|
|
|
+ android:minHeight="@dimen/common_btn_height"
|
|
|
android:paddingHorizontal="@dimen/common_spacing_2x"
|
|
android:paddingHorizontal="@dimen/common_spacing_2x"
|
|
|
android:text="@string/save_and_execute"
|
|
android:text="@string/save_and_execute"
|
|
|
- android:textColor="@color/black"
|
|
|
|
|
|
|
+ android:textColor="@color/white"
|
|
|
android:textSize="@dimen/common_btn_text_size" />
|
|
android:textSize="@dimen/common_btn_text_size" />
|
|
|
|
|
|
|
|
<TextView
|
|
<TextView
|
|
|
android:id="@+id/save"
|
|
android:id="@+id/save"
|
|
|
android:layout_width="wrap_content"
|
|
android:layout_width="wrap_content"
|
|
|
android:layout_height="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
|
- android:background="@drawable/common_btn"
|
|
|
|
|
|
|
+ android:background="@drawable/common_btn_confirm"
|
|
|
|
|
+ android:drawableLeft="@mipmap/icon_confirm"
|
|
|
|
|
+ android:drawablePadding="@dimen/common_spacing"
|
|
|
|
|
+ android:gravity="center"
|
|
|
|
|
+ android:minHeight="@dimen/common_btn_height"
|
|
|
android:paddingHorizontal="@dimen/common_spacing_2x"
|
|
android:paddingHorizontal="@dimen/common_spacing_2x"
|
|
|
android:text="@string/save"
|
|
android:text="@string/save"
|
|
|
- android:textColor="@color/black"
|
|
|
|
|
|
|
+ android:textColor="@color/white"
|
|
|
android:textSize="@dimen/common_btn_text_size" />
|
|
android:textSize="@dimen/common_btn_text_size" />
|
|
|
|
|
|
|
|
<TextView
|
|
<TextView
|
|
|
android:id="@+id/cancel"
|
|
android:id="@+id/cancel"
|
|
|
android:layout_width="wrap_content"
|
|
android:layout_width="wrap_content"
|
|
|
android:layout_height="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
|
- android:layout_marginHorizontal="@dimen/common_spacing"
|
|
|
|
|
- android:background="@drawable/common_btn"
|
|
|
|
|
|
|
+ android:layout_marginLeft="@dimen/common_spacing"
|
|
|
|
|
+ android:background="@drawable/common_btn_cancel"
|
|
|
|
|
+ android:drawableLeft="@mipmap/icon_cancel"
|
|
|
|
|
+ android:drawablePadding="@dimen/common_spacing"
|
|
|
|
|
+ android:gravity="center"
|
|
|
|
|
+ android:minHeight="@dimen/common_btn_height"
|
|
|
android:paddingHorizontal="@dimen/common_spacing_2x"
|
|
android:paddingHorizontal="@dimen/common_spacing_2x"
|
|
|
android:text="@string/cancel"
|
|
android:text="@string/cancel"
|
|
|
- android:textColor="@color/black"
|
|
|
|
|
|
|
+ android:textColor="@color/white"
|
|
|
android:textSize="@dimen/common_btn_text_size" />
|
|
android:textSize="@dimen/common_btn_text_size" />
|
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
|
</LinearLayout>
|
|
</LinearLayout>
|