|
|
@@ -1,6 +1,7 @@
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
<layout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
- xmlns:app="http://schemas.android.com/apk/res-auto">
|
|
|
+ xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
+ xmlns:tools="http://schemas.android.com/tools">
|
|
|
|
|
|
<LinearLayout
|
|
|
android:layout_width="match_parent"
|
|
|
@@ -15,13 +16,12 @@
|
|
|
android:layout_height="wrap_content"
|
|
|
android:gravity="center_vertical"
|
|
|
android:orientation="horizontal"
|
|
|
- android:paddingHorizontal="@dimen/common_spacing"
|
|
|
- android:paddingVertical="@dimen/common_spacing_small">
|
|
|
+ android:paddingHorizontal="@dimen/common_spacing">
|
|
|
|
|
|
<ImageView
|
|
|
- android:layout_width="@dimen/common_spacing_2x"
|
|
|
- android:layout_height="@dimen/common_spacing_2x"
|
|
|
- android:src="@mipmap/icon_data_manage_menu_user_manage" />
|
|
|
+ android:layout_width="@dimen/title_icon_size"
|
|
|
+ android:layout_height="@dimen/title_icon_size"
|
|
|
+ android:src="@mipmap/icon_job_execute" />
|
|
|
|
|
|
<TextView
|
|
|
android:id="@+id/job_name_tv"
|
|
|
@@ -31,7 +31,8 @@
|
|
|
android:layout_weight="1"
|
|
|
android:text="@string/job_manage_title"
|
|
|
android:textColor="@color/black"
|
|
|
- android:textSize="@dimen/normal_text_size_18" />
|
|
|
+ android:textSize="@dimen/normal_text_size_25"
|
|
|
+ android:textStyle="bold" />
|
|
|
|
|
|
<TextView
|
|
|
android:id="@+id/back"
|
|
|
@@ -55,197 +56,332 @@
|
|
|
android:layout_height="@dimen/divider_line_space"
|
|
|
android:background="@color/black" />
|
|
|
|
|
|
- <androidx.recyclerview.widget.RecyclerView
|
|
|
- android:id="@+id/step_rv"
|
|
|
+ <FrameLayout
|
|
|
+ android:id="@+id/full_screen_root_layout"
|
|
|
android:layout_width="match_parent"
|
|
|
- android:layout_height="@dimen/step_rv_height"
|
|
|
- android:layout_marginHorizontal="@dimen/common_spacing"
|
|
|
- android:layout_marginTop="@dimen/common_spacing_2x" />
|
|
|
+ android:layout_height="match_parent">
|
|
|
|
|
|
- <LinearLayout
|
|
|
- android:layout_width="match_parent"
|
|
|
- android:layout_height="@dimen/point_header_height"
|
|
|
- android:layout_marginHorizontal="@dimen/common_spacing_2x"
|
|
|
- android:layout_marginTop="@dimen/common_spacing"
|
|
|
- android:background="@drawable/common_card_bg"
|
|
|
- android:divider="@drawable/divider_table"
|
|
|
- android:showDividers="middle">
|
|
|
-
|
|
|
- <TextView
|
|
|
- android:layout_width="0dp"
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
android:layout_height="match_parent"
|
|
|
- android:layout_weight="1"
|
|
|
- android:gravity="center"
|
|
|
- android:text="@string/point_name_tv"
|
|
|
- android:textSize="@dimen/common_text_size" />
|
|
|
+ android:orientation="vertical">
|
|
|
|
|
|
- <TextView
|
|
|
- android:layout_width="0dp"
|
|
|
- android:layout_height="match_parent"
|
|
|
- android:layout_weight="1"
|
|
|
- android:gravity="center"
|
|
|
- android:text="@string/point_manage_point_function"
|
|
|
- android:textSize="@dimen/common_text_size" />
|
|
|
+ <androidx.recyclerview.widget.RecyclerView
|
|
|
+ android:id="@+id/step_rv"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="@dimen/step_rv_height"
|
|
|
+ android:layout_marginHorizontal="@dimen/common_spacing"
|
|
|
+ android:layout_marginTop="@dimen/common_spacing_2x" />
|
|
|
|
|
|
- <TextView
|
|
|
- android:layout_width="0dp"
|
|
|
- android:layout_height="match_parent"
|
|
|
- android:layout_weight="1"
|
|
|
- android:gravity="center"
|
|
|
- android:text="@string/lock_status"
|
|
|
- android:textSize="@dimen/common_text_size" />
|
|
|
- </LinearLayout>
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="60dp"
|
|
|
+ android:layout_marginHorizontal="@dimen/common_spacing_2x"
|
|
|
+ android:background="@drawable/common_layout_bg"
|
|
|
+ android:divider="@drawable/divider_table"
|
|
|
+ android:gravity="center"
|
|
|
+ android:orientation="horizontal"
|
|
|
+ android:showDividers="middle">
|
|
|
|
|
|
- <com.grkj.iscs.view.MaxHeightRecyclerView
|
|
|
- android:id="@+id/list_rv"
|
|
|
- android:layout_width="match_parent"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:layout_marginHorizontal="@dimen/common_spacing_2x"
|
|
|
- android:background="@drawable/common_card_bg"
|
|
|
- app:maxHeight="@dimen/point_rv_height" />
|
|
|
+ <ImageView
|
|
|
+ android:layout_width="@dimen/job_execute_info_size"
|
|
|
+ android:layout_height="@dimen/job_execute_info_size"
|
|
|
+ android:layout_marginHorizontal="@dimen/common_spacing"
|
|
|
+ android:src="@mipmap/icon_job_execute_info" />
|
|
|
|
|
|
- <LinearLayout
|
|
|
- android:id="@+id/colocker_layout"
|
|
|
- android:layout_width="match_parent"
|
|
|
- android:layout_height="0dp"
|
|
|
- android:layout_marginHorizontal="@dimen/common_spacing_2x"
|
|
|
- android:layout_marginTop="@dimen/common_spacing"
|
|
|
- android:layout_marginBottom="@dimen/common_spacing"
|
|
|
- android:layout_weight="1"
|
|
|
- android:divider="@drawable/divider_table"
|
|
|
- android:orientation="vertical"
|
|
|
- android:showDividers="middle"
|
|
|
- android:visibility="gone">
|
|
|
+ <RelativeLayout
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_weight="1">
|
|
|
|
|
|
- <LinearLayout
|
|
|
- android:layout_width="match_parent"
|
|
|
- android:layout_height="@dimen/colocker_layout_height"
|
|
|
- android:background="@drawable/common_card_bg"
|
|
|
- android:divider="@drawable/divider_table"
|
|
|
- android:showDividers="middle">
|
|
|
-
|
|
|
- <TextView
|
|
|
- android:id="@+id/wait_to_colock"
|
|
|
- android:layout_width="0dp"
|
|
|
- android:layout_height="match_parent"
|
|
|
- android:layout_weight="1"
|
|
|
- android:gravity="center"
|
|
|
- android:text="@string/wait_to_colock"
|
|
|
- android:textSize="@dimen/common_text_size" />
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/lock_tv"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_centerVertical="true"
|
|
|
+ android:layout_toLeftOf="@+id/lock_iv"
|
|
|
+ android:gravity="center"
|
|
|
+ android:text="@string/job_execute_tab_title_lock"
|
|
|
+ android:textSize="@dimen/common_text_size" />
|
|
|
|
|
|
- <TextView
|
|
|
- android:id="@+id/already_colock"
|
|
|
- android:layout_width="0dp"
|
|
|
- android:layout_height="match_parent"
|
|
|
- android:layout_weight="1"
|
|
|
- android:gravity="center"
|
|
|
- android:text="@string/already_colock"
|
|
|
- android:textSize="@dimen/common_text_size" />
|
|
|
+ <ImageView
|
|
|
+ android:id="@+id/lock_iv"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_centerInParent="true"
|
|
|
+ android:paddingHorizontal="@dimen/common_spacing"
|
|
|
+ android:src="@mipmap/icon_job_execute_lock" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/lock_info"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_centerVertical="true"
|
|
|
+ android:layout_toRightOf="@+id/lock_iv"
|
|
|
+ android:textSize="@dimen/common_text_size" />
|
|
|
+ </RelativeLayout>
|
|
|
+
|
|
|
+
|
|
|
+ <RelativeLayout
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_weight="1">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/colock_tv"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_centerVertical="true"
|
|
|
+ android:layout_toLeftOf="@+id/colock_iv"
|
|
|
+ android:gravity="center"
|
|
|
+ android:text="@string/job_execute_tab_title_colock"
|
|
|
+ android:textSize="@dimen/common_text_size" />
|
|
|
|
|
|
- <TextView
|
|
|
- android:id="@+id/already_uncolock"
|
|
|
- android:layout_width="0dp"
|
|
|
+ <ImageView
|
|
|
+ android:id="@+id/colock_iv"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_centerInParent="true"
|
|
|
+ android:paddingHorizontal="@dimen/common_spacing"
|
|
|
+ android:src="@mipmap/icon_job_execute_colock" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/colock_info"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_centerVertical="true"
|
|
|
+ android:layout_toRightOf="@+id/colock_iv"
|
|
|
+ android:textSize="@dimen/common_text_size" />
|
|
|
+ </RelativeLayout>
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:id="@+id/data_layout"
|
|
|
+ android:layout_width="match_parent"
|
|
|
android:layout_height="match_parent"
|
|
|
+ android:layout_marginHorizontal="@dimen/common_spacing_2x"
|
|
|
+ android:layout_marginTop="@dimen/common_spacing"
|
|
|
android:layout_weight="1"
|
|
|
- android:gravity="center"
|
|
|
- android:text="@string/already_uncolock"
|
|
|
- android:textSize="@dimen/common_text_size" />
|
|
|
- </LinearLayout>
|
|
|
+ android:background="@drawable/common_layout_bg"
|
|
|
+ android:divider="@drawable/divider_table"
|
|
|
+ android:orientation="vertical"
|
|
|
+ android:showDividers="middle">
|
|
|
|
|
|
- <LinearLayout
|
|
|
- android:layout_width="match_parent"
|
|
|
- android:layout_height="match_parent"
|
|
|
- android:background="@drawable/common_card_bg"
|
|
|
- android:divider="@drawable/divider_table"
|
|
|
- android:orientation="horizontal"
|
|
|
- android:showDividers="middle">
|
|
|
+ <RelativeLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="50dp"
|
|
|
+ android:background="@drawable/common_layout_bg">
|
|
|
|
|
|
- <androidx.recyclerview.widget.RecyclerView
|
|
|
- android:id="@+id/wait_to_colock_rv"
|
|
|
- android:layout_width="0dp"
|
|
|
- android:layout_height="match_parent"
|
|
|
- android:padding="@dimen/common_spacing"
|
|
|
- android:layout_weight="1" />
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/data_title_tv"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_centerInParent="true"
|
|
|
+ android:textColor="@color/black"
|
|
|
+ android:textSize="@dimen/common_text_size" />
|
|
|
|
|
|
- <androidx.recyclerview.widget.RecyclerView
|
|
|
- android:id="@+id/already_colock_rv"
|
|
|
- android:layout_width="0dp"
|
|
|
- android:layout_height="match_parent"
|
|
|
- android:padding="@dimen/common_spacing"
|
|
|
- android:layout_weight="1" />
|
|
|
+ <ImageView
|
|
|
+ android:id="@+id/full_screen"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_alignParentRight="true"
|
|
|
+ android:layout_centerVertical="true"
|
|
|
+ android:layout_marginRight="@dimen/common_spacing"
|
|
|
+ android:src="@mipmap/icon_full_screen" />
|
|
|
+ </RelativeLayout>
|
|
|
|
|
|
- <androidx.recyclerview.widget.RecyclerView
|
|
|
- android:id="@+id/already_uncolock_rv"
|
|
|
- android:layout_width="0dp"
|
|
|
- android:layout_height="match_parent"
|
|
|
- android:padding="@dimen/common_spacing"
|
|
|
- android:layout_weight="1" />
|
|
|
- </LinearLayout>
|
|
|
- </LinearLayout>
|
|
|
+ <FrameLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="match_parent">
|
|
|
|
|
|
- <View
|
|
|
- android:id="@+id/space_view"
|
|
|
- android:layout_width="0dp"
|
|
|
- android:layout_height="@dimen/divider_line_space"
|
|
|
- android:layout_weight="1" />
|
|
|
+ <LinearLayout
|
|
|
+ android:id="@+id/lock_status_layout"
|
|
|
+ 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:gravity="right"
|
|
|
- android:minHeight="@dimen/btn_layout_min_height"
|
|
|
- android:orientation="horizontal"
|
|
|
- android:padding="@dimen/common_spacing">
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="@dimen/point_header_height"
|
|
|
+ android:background="@drawable/common_layout_bg"
|
|
|
+ android:divider="@drawable/divider_table"
|
|
|
+ android:showDividers="middle">
|
|
|
|
|
|
- <TextView
|
|
|
- android:id="@+id/to_lock"
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:layout_marginLeft="@dimen/common_spacing"
|
|
|
- android:background="@drawable/bg_btn_job_execute_go_locking"
|
|
|
- android:drawableLeft="@drawable/icon_ticket_lock"
|
|
|
- android:paddingHorizontal="@dimen/common_spacing"
|
|
|
- android:text="@string/go_locking"
|
|
|
- android:textColor="@color/white"
|
|
|
- android:textSize="@dimen/common_btn_text_size"
|
|
|
- android:visibility="gone" />
|
|
|
+ <TextView
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:gravity="center"
|
|
|
+ android:text="@string/point_name_tv"
|
|
|
+ android:textSize="@dimen/common_text_size" />
|
|
|
|
|
|
- <TextView
|
|
|
- android:id="@+id/to_unlock"
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:layout_marginLeft="@dimen/common_spacing"
|
|
|
- android:background="@drawable/bg_btn_job_execute_go_unlocking"
|
|
|
- android:drawableLeft="@drawable/icon_ticket_unlock"
|
|
|
- android:paddingHorizontal="@dimen/common_spacing"
|
|
|
- android:text="@string/go_unlocking"
|
|
|
- android:textColor="@color/white"
|
|
|
- android:textSize="@dimen/common_btn_text_size"
|
|
|
- android:visibility="gone" />
|
|
|
+ <TextView
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:gravity="center"
|
|
|
+ android:text="@string/point_manage_point_function"
|
|
|
+ android:textSize="@dimen/common_text_size" />
|
|
|
|
|
|
- <TextView
|
|
|
- android:id="@+id/cancel_job"
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:layout_marginLeft="@dimen/common_spacing"
|
|
|
- android:background="@drawable/bg_btn_job_execute_normal"
|
|
|
- android:paddingHorizontal="@dimen/common_spacing"
|
|
|
- android:text="@string/cancel_the_job"
|
|
|
- android:textColor="@color/black"
|
|
|
- android:textSize="@dimen/common_btn_text_size"
|
|
|
- android:visibility="gone" />
|
|
|
+ <TextView
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:gravity="center"
|
|
|
+ android:text="@string/lock_status"
|
|
|
+ android:textSize="@dimen/common_text_size" />
|
|
|
+ </LinearLayout>
|
|
|
|
|
|
- <TextView
|
|
|
- android:id="@+id/finish_job"
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:layout_marginLeft="@dimen/common_spacing"
|
|
|
- android:background="@drawable/bg_btn_job_execute_normal"
|
|
|
- android:paddingHorizontal="@dimen/common_spacing"
|
|
|
- android:text="@string/finish_the_job"
|
|
|
- android:textColor="@color/black"
|
|
|
- android:textSize="@dimen/common_btn_text_size"
|
|
|
- android:visibility="gone" />
|
|
|
- </LinearLayout>
|
|
|
+ <androidx.recyclerview.widget.RecyclerView
|
|
|
+ android:id="@+id/list_rv"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:background="@drawable/common_layout_bg" />
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:id="@+id/colocker_layout"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:divider="@drawable/divider_table"
|
|
|
+ android:orientation="vertical"
|
|
|
+ android:showDividers="middle"
|
|
|
+ android:visibility="gone">
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="@dimen/colocker_layout_height"
|
|
|
+ android:background="@drawable/common_card_bg"
|
|
|
+ android:divider="@drawable/divider_table"
|
|
|
+ android:showDividers="middle">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/wait_to_colock"
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:gravity="center"
|
|
|
+ android:text="@string/wait_to_colock"
|
|
|
+ android:textSize="@dimen/common_text_size" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/already_colock"
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:gravity="center"
|
|
|
+ android:text="@string/already_colock"
|
|
|
+ android:textSize="@dimen/common_text_size" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/already_uncolock"
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:gravity="center"
|
|
|
+ android:text="@string/already_uncolock"
|
|
|
+ android:textSize="@dimen/common_text_size" />
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:background="@drawable/common_card_bg"
|
|
|
+ android:divider="@drawable/divider_table"
|
|
|
+ android:orientation="horizontal"
|
|
|
+ android:showDividers="middle">
|
|
|
+
|
|
|
+ <androidx.recyclerview.widget.RecyclerView
|
|
|
+ android:id="@+id/wait_to_colock_rv"
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:padding="@dimen/common_spacing" />
|
|
|
+
|
|
|
+ <androidx.recyclerview.widget.RecyclerView
|
|
|
+ android:id="@+id/already_colock_rv"
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:padding="@dimen/common_spacing" />
|
|
|
+
|
|
|
+ <androidx.recyclerview.widget.RecyclerView
|
|
|
+ android:id="@+id/already_uncolock_rv"
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:padding="@dimen/common_spacing" />
|
|
|
+ </LinearLayout>
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/step_description_tv"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:textSize="@dimen/common_text_size"
|
|
|
+ android:visibility="gone" />
|
|
|
+ </FrameLayout>
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:gravity="right"
|
|
|
+ android:minHeight="@dimen/btn_layout_min_height"
|
|
|
+ android:orientation="horizontal"
|
|
|
+ android:padding="@dimen/common_spacing">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/to_lock"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginLeft="@dimen/common_spacing"
|
|
|
+ android:background="@drawable/bg_btn_job_execute_go_locking"
|
|
|
+ android:drawableLeft="@drawable/icon_ticket_lock"
|
|
|
+ android:paddingHorizontal="@dimen/common_spacing"
|
|
|
+ android:text="@string/go_locking"
|
|
|
+ android:textColor="@color/white"
|
|
|
+ android:textSize="@dimen/common_btn_text_size"
|
|
|
+ android:visibility="gone" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/to_unlock"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginLeft="@dimen/common_spacing"
|
|
|
+ android:background="@drawable/bg_btn_job_execute_go_unlocking"
|
|
|
+ android:drawableLeft="@drawable/icon_ticket_unlock"
|
|
|
+ android:paddingHorizontal="@dimen/common_spacing"
|
|
|
+ android:text="@string/go_unlocking"
|
|
|
+ android:textColor="@color/white"
|
|
|
+ android:textSize="@dimen/common_btn_text_size"
|
|
|
+ android:visibility="gone" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/cancel_job"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginLeft="@dimen/common_spacing"
|
|
|
+ android:background="@drawable/bg_btn_job_execute_normal"
|
|
|
+ android:paddingHorizontal="@dimen/common_spacing"
|
|
|
+ android:text="@string/cancel_the_job"
|
|
|
+ android:textColor="@color/black"
|
|
|
+ android:textSize="@dimen/common_btn_text_size"
|
|
|
+ android:visibility="gone" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/finish_job"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginLeft="@dimen/common_spacing"
|
|
|
+ android:background="@drawable/bg_btn_job_execute_normal"
|
|
|
+ android:paddingHorizontal="@dimen/common_spacing"
|
|
|
+ android:text="@string/finish_the_job"
|
|
|
+ android:textColor="@color/black"
|
|
|
+ android:textSize="@dimen/common_btn_text_size"
|
|
|
+ android:visibility="gone" />
|
|
|
+ </LinearLayout>
|
|
|
+ </LinearLayout>
|
|
|
+ </FrameLayout>
|
|
|
</LinearLayout>
|
|
|
</layout>
|