<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="@dimen/titleViewHeight"
android:gravity="center_vertical"
android:orientation="horizontal">
<ImageView
style="@style/leftImageStyle"
android:src="@mipmap/icon3" />
<TextView
style="@style/textViewStyle"
android:text="特征管点:" />
<Spinner
android:id="@+id/featureSpinner"
style="@style/spinnerStyle" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="@dimen/titleViewHeight"
android:gravity="center_vertical"
android:orientation="horizontal">
<ImageView
style="@style/leftImageStyle"
android:src="@mipmap/icon3" />
<TextView
style="@style/textViewStyle"
android:text="特征点埋深:" />
<com.pengxh.kt.lite.widget.DeleteEditText
android:id="@+id/featureDepthView"
style="@style/inputEditTextStyle"
android:inputType="numberDecimal" />
<TextView
style="@style/textViewStyle"
android:layout_gravity="center_vertical"
android:layout_marginHorizontal="3dp"
android:text="mm"
android:textSize="@dimen/sp_16" />
</LinearLayout>
</LinearLayout>