|
@@ -6,32 +6,62 @@
|
|
|
android:layout_height="match_parent"
|
|
android:layout_height="match_parent"
|
|
|
tools:context=".view.fragment.StepFragment">
|
|
tools:context=".view.fragment.StepFragment">
|
|
|
|
|
|
|
|
- <com.grkj.iscs.view.widget.CommonBtn
|
|
|
|
|
- android:id="@+id/cb_back"
|
|
|
|
|
- android:layout_width="wrap_content"
|
|
|
|
|
- android:layout_height="wrap_content"
|
|
|
|
|
- android:layout_alignParentRight="true"
|
|
|
|
|
- android:layout_alignParentBottom="true"
|
|
|
|
|
- app:btn_bg="@drawable/common_btn_blue_bg"
|
|
|
|
|
- app:btn_icon="@mipmap/go_back"
|
|
|
|
|
- app:btn_name="@string/back" />
|
|
|
|
|
-
|
|
|
|
|
- <com.grkj.iscs.view.widget.CommonBtn
|
|
|
|
|
- android:id="@+id/cb_action"
|
|
|
|
|
- android:layout_width="wrap_content"
|
|
|
|
|
|
|
+ <androidx.constraintlayout.widget.ConstraintLayout
|
|
|
|
|
+ android:id="@+id/rl_action"
|
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
android:layout_height="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
|
- android:layout_alignParentBottom="true"
|
|
|
|
|
- android:layout_marginRight="@dimen/common_spacing"
|
|
|
|
|
- android:layout_toLeftOf="@id/cb_back"
|
|
|
|
|
- android:visibility="invisible"
|
|
|
|
|
- app:btn_bg="@drawable/common_btn_red_bg"
|
|
|
|
|
- app:btn_icon="@mipmap/stop"
|
|
|
|
|
- app:btn_name="@string/cancel_the_job" />
|
|
|
|
|
|
|
+ android:layout_alignParentBottom="true">
|
|
|
|
|
+
|
|
|
|
|
+ <LinearLayout
|
|
|
|
|
+ android:id="@+id/ll_tip"
|
|
|
|
|
+ android:layout_width="wrap_content"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:layout_centerVertical="true"
|
|
|
|
|
+ android:orientation="horizontal"
|
|
|
|
|
+ android:gravity="center_vertical"
|
|
|
|
|
+ app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
|
+ app:layout_constraintLeft_toLeftOf="parent"
|
|
|
|
|
+ app:layout_constraintTop_toTopOf="parent"
|
|
|
|
|
+ android:visibility="gone">
|
|
|
|
|
+
|
|
|
|
|
+ <ImageView
|
|
|
|
|
+ android:layout_width="@dimen/common_icon_size"
|
|
|
|
|
+ android:layout_height="@dimen/common_icon_size"
|
|
|
|
|
+ android:background="@mipmap/tip" />
|
|
|
|
|
+
|
|
|
|
|
+ <TextView
|
|
|
|
|
+ android:id="@+id/tv_tip"
|
|
|
|
|
+ style="@style/CommonTextView"
|
|
|
|
|
+ android:layout_marginLeft="@dimen/common_spacing" />
|
|
|
|
|
+ </LinearLayout>
|
|
|
|
|
+
|
|
|
|
|
+ <com.grkj.iscs.view.widget.CommonBtn
|
|
|
|
|
+ android:id="@+id/cb_back"
|
|
|
|
|
+ android:layout_width="wrap_content"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ app:btn_bg="@drawable/common_btn_blue_bg"
|
|
|
|
|
+ app:btn_icon="@mipmap/go_back"
|
|
|
|
|
+ app:btn_name="@string/back"
|
|
|
|
|
+ app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
|
+ app:layout_constraintRight_toRightOf="parent" />
|
|
|
|
|
+
|
|
|
|
|
+ <com.grkj.iscs.view.widget.CommonBtn
|
|
|
|
|
+ android:id="@+id/cb_action"
|
|
|
|
|
+ android:layout_width="wrap_content"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:layout_marginRight="@dimen/common_spacing"
|
|
|
|
|
+ android:visibility="invisible"
|
|
|
|
|
+ app:btn_bg="@drawable/common_btn_red_bg"
|
|
|
|
|
+ app:btn_icon="@mipmap/stop"
|
|
|
|
|
+ app:btn_name="@string/cancel_the_job"
|
|
|
|
|
+ app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
|
+ app:layout_constraintRight_toLeftOf="@id/cb_back" />
|
|
|
|
|
+ </androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
|
|
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
|
|
android:layout_width="match_parent"
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="match_parent"
|
|
android:layout_height="match_parent"
|
|
|
- android:layout_above="@id/cb_back"
|
|
|
|
|
|
|
+ android:layout_above="@id/rl_action"
|
|
|
android:layout_marginBottom="@dimen/common_spacing"
|
|
android:layout_marginBottom="@dimen/common_spacing"
|
|
|
android:background="@drawable/item_rv_technology_sop_bg_normal"
|
|
android:background="@drawable/item_rv_technology_sop_bg_normal"
|
|
|
android:padding="5dp">
|
|
android:padding="5dp">
|
|
@@ -131,8 +161,8 @@
|
|
|
android:id="@+id/mapview"
|
|
android:id="@+id/mapview"
|
|
|
android:layout_width="match_parent"
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="match_parent"
|
|
android:layout_height="match_parent"
|
|
|
- android:layout_marginTop="@dimen/common_spacing_small"
|
|
|
|
|
- android:layout_above="@id/rv_statistics" />
|
|
|
|
|
|
|
+ android:layout_above="@id/rv_statistics"
|
|
|
|
|
+ android:layout_marginTop="@dimen/common_spacing_small" />
|
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
|
|
|
|