上海工程测量
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.
 
 

174 lines
8.2 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"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<ImageView
android:layout_width="match_parent"
android:layout_height="209dp"
android:background="@drawable/bg_top_blue"
app:layout_constraintTop_toTopOf="parent" />
<TextView
android:id="@+id/tvProject"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginHorizontal="@dimen/margin_side"
android:layout_marginTop="@dimen/margin_side"
android:textColor="@color/text_color_fff"
android:textSize="20sp"
android:textStyle="bold"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
tools:text="某工程" />
<androidx.constraintlayout.widget.ConstraintLayout
android:id="@+id/layoutFirst"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginHorizontal="@dimen/margin_side"
android:layout_marginTop="@dimen/margin_side"
android:background="@drawable/bg_section_r_8_top"
android:padding="@dimen/padding_side"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/tvProject">
<TextView
android:id="@+id/tvTitle1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/instrument_online"
android:textColor="@color/text_color_main"
android:textSize="@dimen/text_size_section_title"
android:textStyle="bold"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<com.project.survey.widget.SectionItemWidget
android:id="@+id/itemConnectTotalStation"
android:layout_width="0dp"
android:layout_height="wrap_content"
app:layout_constraintEnd_toStartOf="@id/itemConnectRTK"
app:layout_constraintHorizontal_weight="1"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/tvTitle1"
app:siw_icon="@drawable/total_station_online"
app:siw_name="@string/total_station_online" />
<com.project.survey.widget.SectionItemWidget
android:id="@+id/itemConnectRTK"
android:layout_width="0dp"
android:layout_height="wrap_content"
app:layout_constraintEnd_toStartOf="@id/itemSatelliteStatus"
app:layout_constraintHorizontal_weight="1"
app:layout_constraintStart_toEndOf="@id/itemConnectTotalStation"
app:layout_constraintTop_toTopOf="@id/itemConnectTotalStation"
app:siw_icon="@drawable/rtk_online"
app:siw_name="@string/rtk_online" />
<com.project.survey.widget.SectionItemWidget
android:id="@+id/itemSatelliteStatus"
android:layout_width="0dp"
android:layout_height="wrap_content"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_weight="1"
app:layout_constraintStart_toEndOf="@id/itemConnectRTK"
app:layout_constraintTop_toTopOf="@id/itemConnectTotalStation"
app:siw_icon="@drawable/satellite_status"
app:siw_name="@string/satellite_status" />
</androidx.constraintlayout.widget.ConstraintLayout>
<androidx.constraintlayout.widget.ConstraintLayout
android:id="@+id/layoutSecond"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginHorizontal="@dimen/margin_side"
android:layout_marginTop="@dimen/margin_side"
android:background="@drawable/bg_section_r_8"
android:padding="@dimen/padding_side"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/layoutFirst">
<TextView
android:id="@+id/tvTitle2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/job_settings"
android:textColor="@color/text_color_main"
android:textSize="@dimen/text_size_section_title"
android:textStyle="bold"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<com.project.survey.widget.SectionItemWidget
android:id="@+id/itemTotalStationSetupStation"
android:layout_width="0dp"
android:layout_height="wrap_content"
app:layout_constraintEnd_toStartOf="@id/itemMobileStationMode"
app:layout_constraintHorizontal_weight="1"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/tvTitle2"
app:siw_icon="@drawable/total_station_instrumentation_station"
app:siw_name="@string/total_station_instrumentation_station" />
<com.project.survey.widget.SectionItemWidget
android:id="@+id/itemMobileStationMode"
android:layout_width="0dp"
android:layout_height="wrap_content"
app:layout_constraintEnd_toStartOf="@id/itemBaseStationMode"
app:layout_constraintHorizontal_weight="1"
app:layout_constraintStart_toEndOf="@id/itemTotalStationSetupStation"
app:layout_constraintTop_toTopOf="@id/itemTotalStationSetupStation"
app:siw_icon="@drawable/mobile_station_mode"
app:siw_name="@string/mobile_station_mode" />
<com.project.survey.widget.SectionItemWidget
android:id="@+id/itemBaseStationMode"
android:layout_width="0dp"
android:layout_height="wrap_content"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_weight="1"
app:layout_constraintStart_toEndOf="@id/itemMobileStationMode"
app:layout_constraintTop_toTopOf="@id/itemTotalStationSetupStation"
app:siw_icon="@drawable/base_station_mode"
app:siw_name="@string/base_station_mode" />
<com.project.survey.widget.SectionItemWidget
android:id="@+id/itemBaseStationTranslation"
android:layout_width="0dp"
android:layout_height="wrap_content"
app:layout_constraintEnd_toStartOf="@id/itemCoordinateSystem"
app:layout_constraintHorizontal_weight="1"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/itemTotalStationSetupStation"
app:siw_icon="@drawable/base_station_translation"
app:siw_name="@string/base_station_translation" />
<com.project.survey.widget.SectionItemWidget
android:id="@+id/itemCoordinateSystem"
android:layout_width="0dp"
android:layout_height="wrap_content"
app:layout_constraintEnd_toStartOf="@id/itemPointCorrection"
app:layout_constraintHorizontal_weight="1"
app:layout_constraintStart_toEndOf="@id/itemBaseStationTranslation"
app:layout_constraintTop_toTopOf="@id/itemBaseStationTranslation"
app:siw_icon="@drawable/coordinate_system"
app:siw_name="@string/coordinate_system" />
<com.project.survey.widget.SectionItemWidget
android:id="@+id/itemPointCorrection"
android:layout_width="0dp"
android:layout_height="wrap_content"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_weight="1"
app:layout_constraintStart_toEndOf="@id/itemCoordinateSystem"
app:layout_constraintTop_toTopOf="@id/itemBaseStationTranslation"
app:siw_icon="@drawable/point_correction"
app:siw_name="@string/point_correction" />
</androidx.constraintlayout.widget.ConstraintLayout>
</androidx.constraintlayout.widget.ConstraintLayout>