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.
123 lines
4.0 KiB
XML
123 lines
4.0 KiB
XML
<?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="match_parent"
|
|
android:orientation="vertical">
|
|
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<include layout="@layout/toolbar_yx"/>
|
|
|
|
<TextView
|
|
android:id="@+id/tv_input"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_centerVertical="true"
|
|
android:layout_marginRight="30px"
|
|
android:text=""
|
|
android:textColor="#ffffff"
|
|
android:textSize="28px"
|
|
android:visibility="visible"/>
|
|
</RelativeLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center"
|
|
android:orientation="vertical">
|
|
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="80dp"
|
|
android:gravity="center">
|
|
|
|
<TextView
|
|
style="@style/textTheme"
|
|
android:text="上报人:"/>
|
|
|
|
<EditText
|
|
android:id="@+id/SBR"
|
|
style="@style/editTextTheme"
|
|
android:layout_width="@dimen/px_400"
|
|
android:layout_height="@dimen/px_70"
|
|
android:gravity="left|center_vertical"
|
|
android:enabled="false"
|
|
android:text="上报人"
|
|
android:textColor="#555555"
|
|
android:textSize="28px"/>
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center"
|
|
android:orientation="vertical">
|
|
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="80dp"
|
|
android:gravity="center">
|
|
|
|
<TextView
|
|
style="@style/textTheme"
|
|
android:text="工作内容:"/>
|
|
|
|
<EditText
|
|
android:id="@+id/et_gznr"
|
|
style="@style/editTextTheme"
|
|
android:layout_width="@dimen/px_400"
|
|
android:layout_height="@dimen/px_70"
|
|
android:gravity="left|center_vertical"
|
|
android:text="卸氨工作"
|
|
android:textColor="#555555"
|
|
android:textSize="28px"/>
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="80dp"
|
|
android:gravity="center">
|
|
|
|
<TextView
|
|
style="@style/textTheme"
|
|
android:layout_width="wrap_content"
|
|
android:text="卸氨开始时间:"/>
|
|
|
|
<TextView
|
|
android:id="@+id/tv_starttime"
|
|
style="@style/editTextTheme"
|
|
android:layout_width="@dimen/px_400"
|
|
android:layout_height="@dimen/px_70"
|
|
android:gravity="center_vertical|left"
|
|
android:textColor="#555555"
|
|
android:textSize="28px"/>
|
|
</LinearLayout>
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="@dimen/px_100"
|
|
android:gravity="center"
|
|
android:orientation="horizontal">
|
|
|
|
<Button
|
|
android:id="@+id/btn_save"
|
|
style="@style/button"
|
|
android:layout_width="match_parent"
|
|
android:layout_marginLeft="30px"
|
|
android:layout_marginRight="30px"
|
|
android:text="新增"/>
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|