|
|
@@ -20,35 +20,36 @@
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
<LinearLayout
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="35dp"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
android:gravity="center_vertical"
|
|
|
- android:layout_marginTop="10dp"
|
|
|
- android:layout_marginLeft="15dp"
|
|
|
+ android:padding="@dimen/normal_side"
|
|
|
android:orientation="horizontal">
|
|
|
|
|
|
<TextView
|
|
|
android:layout_width="wrap_content"
|
|
|
android:layout_height="wrap_content"
|
|
|
android:textColor="@color/myblack"
|
|
|
- android:textSize="14sp"
|
|
|
+ android:textSize="16sp"
|
|
|
android:text="设备编号:" />
|
|
|
|
|
|
<TextView
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="wrap_content"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="match_parent"
|
|
|
android:id="@+id/device_id"
|
|
|
- android:textColor="#444"
|
|
|
- android:textSize="14sp"
|
|
|
- android:layout_marginLeft="5dp"
|
|
|
+ android:textColor="@color/myblack"
|
|
|
+ android:textSize="16sp"
|
|
|
+ android:paddingLeft="5dp"
|
|
|
android:text="" />
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
+ <include layout="@layout/bottom_line"/>
|
|
|
+
|
|
|
<LinearLayout
|
|
|
android:layout_width="match_parent"
|
|
|
- android:layout_height="35dp"
|
|
|
- android:layout_marginLeft="15dp"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:padding="@dimen/normal_side"
|
|
|
android:gravity="center_vertical"
|
|
|
android:orientation="horizontal">
|
|
|
|
|
|
@@ -56,124 +57,88 @@
|
|
|
android:layout_width="wrap_content"
|
|
|
android:layout_height="wrap_content"
|
|
|
android:textColor="@color/myblack"
|
|
|
- android:textSize="14sp"
|
|
|
+ android:textSize="16sp"
|
|
|
android:text="设备名称:" />
|
|
|
|
|
|
- <LinearLayout
|
|
|
+ <EditText
|
|
|
android:layout_width="match_parent"
|
|
|
- android:layout_height="35dp"
|
|
|
- android:layout_marginLeft="5dp"
|
|
|
- android:gravity="center_vertical"
|
|
|
- android:orientation="vertical">
|
|
|
-
|
|
|
- <EditText
|
|
|
- android:layout_width="match_parent"
|
|
|
- android:layout_height="30dp"
|
|
|
- android:id="@+id/device_name"
|
|
|
- android:layout_marginRight="10dp"
|
|
|
- android:textColor="@color/myblack"
|
|
|
- android:textSize="14sp"
|
|
|
- android:theme="@style/MyEditText"
|
|
|
- android:background="#fff"
|
|
|
- android:singleLine="true"
|
|
|
- android:text="" />
|
|
|
-
|
|
|
- <View
|
|
|
- android:layout_width="match_parent"
|
|
|
- android:layout_height="1dp"
|
|
|
- android:layout_marginRight="10dp"
|
|
|
- android:background="#ccc"/>
|
|
|
-
|
|
|
- </LinearLayout>
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:id="@+id/device_name"
|
|
|
+ android:paddingLeft="5dp"
|
|
|
+ android:textColor="@color/myblack"
|
|
|
+ android:textSize="16sp"
|
|
|
+ android:theme="@style/MyEditText"
|
|
|
+ android:background="#fff"
|
|
|
+ android:singleLine="true"
|
|
|
+ android:text="" />
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
+ <include layout="@layout/bottom_line"/>
|
|
|
+
|
|
|
<LinearLayout
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="35dp"
|
|
|
- android:layout_marginLeft="15dp"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:padding="@dimen/normal_side"
|
|
|
android:gravity="center_vertical"
|
|
|
android:orientation="horizontal">
|
|
|
|
|
|
<TextView
|
|
|
android:layout_width="wrap_content"
|
|
|
android:layout_height="wrap_content"
|
|
|
- android:textColor="#444"
|
|
|
- android:textSize="14sp"
|
|
|
+ android:textColor="@color/myblack"
|
|
|
+ android:textSize="16sp"
|
|
|
android:text="安装位置:" />
|
|
|
|
|
|
- <LinearLayout
|
|
|
+ <EditText
|
|
|
+ android:id="@+id/device_place"
|
|
|
android:layout_width="match_parent"
|
|
|
- android:layout_height="35dp"
|
|
|
- android:layout_marginLeft="5dp"
|
|
|
- android:gravity="center_vertical"
|
|
|
- android:orientation="vertical">
|
|
|
-
|
|
|
- <EditText
|
|
|
- android:id="@+id/device_place"
|
|
|
- android:layout_width="match_parent"
|
|
|
- android:layout_height="30dp"
|
|
|
- android:layout_marginRight="10dp"
|
|
|
- android:textColor="#444"
|
|
|
- android:textSize="14sp"
|
|
|
- android:theme="@style/MyEditText"
|
|
|
- android:background="#fff"
|
|
|
- android:singleLine="true" />
|
|
|
-
|
|
|
- <View
|
|
|
- android:layout_width="match_parent"
|
|
|
- android:layout_height="1dp"
|
|
|
- android:layout_marginRight="10dp"
|
|
|
- android:background="#ccc"/>
|
|
|
-
|
|
|
- </LinearLayout>
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:textColor="@color/myblack"
|
|
|
+ android:textSize="16sp"
|
|
|
+ android:paddingLeft="5dp"
|
|
|
+ android:hint="请输入安装位置"
|
|
|
+ android:theme="@style/MyEditText"
|
|
|
+ android:background="#fff"
|
|
|
+ android:singleLine="true" />
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
+ <include layout="@layout/bottom_line"/>
|
|
|
+
|
|
|
<LinearLayout
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="35dp"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
android:gravity="center_vertical"
|
|
|
- android:layout_marginLeft="15dp"
|
|
|
+ android:paddingLeft="@dimen/normal_side"
|
|
|
+ android:paddingRight="@dimen/normal_side"
|
|
|
android:orientation="horizontal">
|
|
|
|
|
|
<TextView
|
|
|
android:layout_width="wrap_content"
|
|
|
android:layout_height="wrap_content"
|
|
|
- android:textColor="#444"
|
|
|
- android:textSize="14sp"
|
|
|
+ android:textColor="@color/myblack"
|
|
|
+ android:textSize="16sp"
|
|
|
android:text="所属场地:" />
|
|
|
|
|
|
- <LinearLayout
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/tv_value"
|
|
|
android:layout_width="match_parent"
|
|
|
- android:layout_height="match_parent"
|
|
|
- android:layout_marginLeft="5dp"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:paddingTop="@dimen/normal_side"
|
|
|
+ android:paddingBottom="@dimen/normal_side"
|
|
|
android:gravity="center_vertical"
|
|
|
- android:orientation="vertical">
|
|
|
-
|
|
|
- <TextView
|
|
|
- android:id="@+id/tv_value"
|
|
|
- android:layout_width="match_parent"
|
|
|
- android:layout_height="30dp"
|
|
|
- android:gravity="center_vertical"
|
|
|
- android:layout_marginRight="10dp"
|
|
|
- android:background="@drawable/shape_help_category_tv_bg"
|
|
|
- android:drawableRight="@drawable/icon_down"
|
|
|
- android:paddingLeft="10dp"
|
|
|
- android:textColor="@color/content_color"
|
|
|
- android:text="请选择场所"
|
|
|
- android:textSize="14sp"/>
|
|
|
-
|
|
|
- <View
|
|
|
- android:layout_width="match_parent"
|
|
|
- android:layout_height="1dp"
|
|
|
- android:layout_marginRight="10dp"
|
|
|
- android:background="#ccc"/>
|
|
|
-
|
|
|
- </LinearLayout>
|
|
|
+ android:background="@drawable/shape_help_category_tv_bg"
|
|
|
+ android:drawableRight="@drawable/icon_down"
|
|
|
+ android:paddingLeft="10dp"
|
|
|
+ android:textColor="@color/content_color"
|
|
|
+ android:text="请选择场所"
|
|
|
+ android:textSize="16sp"/>
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
+ <include layout="@layout/bottom_line"/>
|
|
|
+
|
|
|
<RelativeLayout
|
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="match_parent"
|