You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

119 lines
3.6 KiB
XML

3 years ago
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
>
<include layout="@layout/toolbar_yx" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="@dimen/sbHeight"
android:layout_margin="@dimen/px_10"
android:layout_marginTop="@dimen/px_20">
<TextView
android:layout_width="wrap_content"
android:layout_height="@dimen/sbHeight"
android:gravity="center_vertical"
android:text="区域:" />
<TextView
android:id="@+id/qy"
android:layout_width="wrap_content"
android:layout_height="@dimen/sbHeight"
android:gravity="center_vertical"
android:text="生产楼" />
</LinearLayout>
<LinearLayout
android:id="@+id/ll"
android:layout_width="match_parent"
android:layout_height="70px"
android:layout_margin="10px"
android:orientation="horizontal">
<TextView
android:id="@+id/tv_content"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:text="结果:"
android:textSize="@dimen/sbtextSize" />
<RadioGroup
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">
<RadioButton
android:id="@+id/rb1"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:checked="true"
android:text="是" />
<RadioButton
android:id="@+id/rb2"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:text="否" />
</RadioGroup>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="@dimen/px_10"
android:orientation="vertical">
<TextView
android:layout_width="wrap_content"
android:layout_height="@dimen/sbHeight"
android:gravity="center_vertical"
android:text="描述:"
android:textSize="@dimen/sbtextSize" />
<EditText
android:id="@+id/et_pcnr"
style="@style/editTextTheme"
android:layout_width="match_parent"
android:layout_height="@dimen/px_300"
android:gravity="left|top" />
</LinearLayout>
<ImageView
android:id="@+id/iv"
android:layout_width="wrap_content"
android:layout_height="250px"
android:layout_gravity="center" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/px_30"
android:gravity="center">
<Button
android:id="@+id/btn_save"
style="@style/button"
android:layout_width="@dimen/px_200"
android:layout_marginRight="@dimen/px_30"
android:text="@string/save" />
<Button
android:id="@+id/btn_cancel"
style="@style/button"
android:layout_width="@dimen/px_200"
android:text="拍照" />
</LinearLayout>
</LinearLayout>