You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
209 lines
8.5 KiB
209 lines
8.5 KiB
<?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/instrument_online"
|
|
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/tvConnectTSActivity"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:drawablePadding="@dimen/sw_8dp"
|
|
android:gravity="center"
|
|
android:text="@string/total_station_online"
|
|
android:textColor="@color/text_color_1"
|
|
android:textSize="@dimen/sw_13sp"
|
|
app:drawableTopCompat="@drawable/total_station_online" />
|
|
|
|
<TextView
|
|
android:id="@+id/tvConnectRtkActivity"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:drawablePadding="@dimen/sw_8dp"
|
|
android:gravity="center"
|
|
android:text="@string/rtk_online"
|
|
android:textColor="@color/text_color_1"
|
|
android:textSize="@dimen/sw_13sp"
|
|
app:drawableTopCompat="@drawable/rtk_online" />
|
|
|
|
<TextView
|
|
android:id="@+id/tvSatelliteStatusActivity"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:drawablePadding="@dimen/sw_8dp"
|
|
android:gravity="center"
|
|
android:text="@string/satellite_status"
|
|
android:textColor="@color/text_color_1"
|
|
android:textSize="@dimen/sw_13sp"
|
|
app:drawableTopCompat="@drawable/satellite_status" />
|
|
|
|
</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/job_settings"
|
|
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/tvTotalStationSetupStation"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:drawablePadding="@dimen/sw_8dp"
|
|
android:gravity="center"
|
|
android:text="@string/total_station_instrumentation_station"
|
|
android:textColor="@color/text_color_1"
|
|
android:textSize="@dimen/sw_13sp"
|
|
app:drawableTopCompat="@drawable/total_station_instrumentation_station" />
|
|
|
|
<TextView
|
|
android:id="@+id/tvMobileStationMode"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:drawablePadding="@dimen/sw_8dp"
|
|
android:gravity="center"
|
|
android:text="@string/mobile_station_mode"
|
|
android:textColor="@color/text_color_1"
|
|
android:textSize="@dimen/sw_13sp"
|
|
app:drawableTopCompat="@drawable/mobile_station_mode" />
|
|
|
|
<TextView
|
|
android:id="@+id/tvBaseStationMode"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:drawablePadding="@dimen/sw_8dp"
|
|
android:gravity="center"
|
|
android:text="@string/base_station_mode"
|
|
android:textColor="@color/text_color_1"
|
|
android:textSize="@dimen/sw_13sp"
|
|
app:drawableTopCompat="@drawable/base_station_mode" />
|
|
|
|
</LinearLayout>
|
|
|
|
<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/tvBaseStationTranslation"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:drawablePadding="@dimen/sw_8dp"
|
|
android:gravity="center"
|
|
android:text="@string/base_station_translation"
|
|
android:textColor="@color/text_color_1"
|
|
android:textSize="@dimen/sw_13sp"
|
|
app:drawableTopCompat="@drawable/base_station_translation" />
|
|
|
|
<TextView
|
|
android:id="@+id/tvCoordinateSystem"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:drawablePadding="@dimen/sw_8dp"
|
|
android:gravity="center"
|
|
android:text="@string/coordinate_system"
|
|
android:textColor="@color/text_color_1"
|
|
android:textSize="@dimen/sw_13sp"
|
|
app:drawableTopCompat="@drawable/coordinate_system" />
|
|
|
|
<TextView
|
|
android:id="@+id/tvPointCorrection"
|
|
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_correction"
|
|
android:textColor="@color/text_color_1"
|
|
android:textSize="@dimen/sw_13sp"
|
|
app:drawableTopCompat="@drawable/point_correction" />
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout> |