|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="@dimen/sw_160dp"
|
|
|
|
android:background="@drawable/bg_top_blue"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/tvProject"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginHorizontal="@dimen/sw_20dp"
|
|
|
|
android:layout_marginTop="@dimen/sw_20dp"
|
|
|
|
android:text="某工程"
|
|
|
|
android:textColor="@color/white"
|
|
|
|
android:textSize="@dimen/sw_20sp"
|
|
|
|
android:textStyle="bold"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/llFirst"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginHorizontal="@dimen/sw_20dp"
|
|
|
|
android:layout_marginTop="@dimen/sw_16dp"
|
|
|
|
android:background="@drawable/bg_white_round_8"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:padding="@dimen/sw_18dp"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/tvProject">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="center"
|
|
|
|
android:text="@string/beidou_application"
|
|
|
|
android:textColor="@color/text_color_1"
|
|
|
|
android:textSize="@dimen/sw_14sp"
|
|
|
|
android:textStyle="bold" />
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="@dimen/sw_12dp"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:weightSum="3">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/tvPointMeasure"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:drawablePadding="@dimen/sw_8dp"
|
|
|
|
android:gravity="center"
|
|
|
|
android:text="@string/point_measurement"
|
|
|
|
android:textColor="@color/text_color_1"
|
|
|
|
android:textSize="@dimen/sw_13sp"
|
|
|
|
app:drawableTopCompat="@drawable/ic_point_measurement" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/tvLofting"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:drawablePadding="@dimen/sw_8dp"
|
|
|
|
android:gravity="center"
|
|
|
|
android:text="@string/stakeout"
|
|
|
|
android:textColor="@color/text_color_1"
|
|
|
|
android:textSize="@dimen/sw_13sp"
|
|
|
|
app:drawableTopCompat="@drawable/stakeout" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/llSecond"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginHorizontal="@dimen/sw_20dp"
|
|
|
|
android:layout_marginTop="@dimen/sw_16dp"
|
|
|
|
android:background="@drawable/bg_white_round_8"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:padding="@dimen/sw_18dp"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/llFirst">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="center"
|
|
|
|
android:text="@string/process_approval"
|
|
|
|
android:textColor="@color/text_color_1"
|
|
|
|
android:textSize="@dimen/sw_14sp"
|
|
|
|
android:textStyle="bold" />
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="@dimen/sw_12dp"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:weightSum="3">
|
|
|
|
|
|
|
|
<RelativeLayout
|
|
|
|
android:id="@+id/rlApprovalWait"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:gravity="center">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/tvA"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:drawablePadding="@dimen/sw_8dp"
|
|
|
|
android:gravity="center"
|
|
|
|
android:text="@string/to_be_processed"
|
|
|
|
android:textColor="@color/text_color_1"
|
|
|
|
android:textSize="@dimen/sw_13sp"
|
|
|
|
app:drawableTopCompat="@drawable/processed" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/tvWaitNum"
|
|
|
|
android:layout_width="@dimen/sw_16dp"
|
|
|
|
android:layout_height="@dimen/sw_16dp"
|
|
|
|
android:layout_alignTop="@+id/tvA"
|
|
|
|
android:layout_alignRight="@+id/tvA"
|
|
|
|
android:background="@drawable/bg_red_circle"
|
|
|
|
android:gravity="center"
|
|
|
|
android:text="1"
|
|
|
|
android:textColor="@color/white"
|
|
|
|
android:textSize="@dimen/sw_10dp"
|
|
|
|
android:visibility="visible" />
|
|
|
|
|
|
|
|
</RelativeLayout>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/tvApprovalProcessed"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:drawablePadding="@dimen/sw_8dp"
|
|
|
|
android:gravity="center"
|
|
|
|
android:text="@string/processed"
|
|
|
|
android:textColor="@color/text_color_1"
|
|
|
|
android:textSize="@dimen/sw_13sp"
|
|
|
|
app:drawableTopCompat="@drawable/processed" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/tvApprovalInitated"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:drawablePadding="@dimen/sw_8dp"
|
|
|
|
android:gravity="center"
|
|
|
|
android:text="@string/initiated"
|
|
|
|
android:textColor="@color/text_color_1"
|
|
|
|
android:textSize="@dimen/sw_13sp"
|
|
|
|
app:drawableTopCompat="@drawable/initiated" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/llThird"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginHorizontal="@dimen/sw_20dp"
|
|
|
|
android:layout_marginTop="@dimen/sw_16dp"
|
|
|
|
android:background="@drawable/bg_white_round_8"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:padding="@dimen/sw_18dp"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/llSecond">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="center"
|
|
|
|
android:text="@string/engineering_control_network"
|
|
|
|
android:textColor="@color/text_color_1"
|
|
|
|
android:textSize="@dimen/sw_14sp"
|
|
|
|
android:textStyle="bold" />
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="@dimen/sw_12dp"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:weightSum="3">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/tvControlNetFirst"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:drawablePadding="@dimen/sw_8dp"
|
|
|
|
android:gravity="center"
|
|
|
|
android:text="@string/head_control_network"
|
|
|
|
android:textColor="@color/text_color_1"
|
|
|
|
android:textSize="@dimen/sw_13sp"
|
|
|
|
app:drawableTopCompat="@drawable/head_control_network" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/tvControlNetSpecial"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:drawablePadding="@dimen/sw_8dp"
|
|
|
|
android:gravity="center"
|
|
|
|
android:text="@string/dedicated_control_network"
|
|
|
|
android:textColor="@color/text_color_1"
|
|
|
|
android:textSize="@dimen/sw_13sp"
|
|
|
|
app:drawableTopCompat="@drawable/dedicated_control_network" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|