| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 |
- <?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:background="@color/white"
- android:orientation="vertical" >
-
- <View
- android:layout_width="match_parent"
- android:layout_height="10dp"
- android:layout_marginTop="3dp"
- android:background="@color/linegray"
- />
- <LinearLayout
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="3dp"
- android:orientation="vertical" >
- <EditText
- android:id="@+id/edtRemark"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginLeft="15dp"
- android:background="@null"
- android:ems="10"
- android:hint="请填写备注内容"
- android:inputType="textMultiLine"
- android:maxLength="255"
- android:maxLines="4"
- android:minLines="4"
- android:scrollbars="vertical"
- android:textSize="@dimen/textsize_13" />
- </LinearLayout>
- <View
- android:layout_width="match_parent"
- android:layout_height="1dp"
- android:background="@color/linegray"
- />
- <LinearLayout
- android:id="@+id/ll_photo"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="1dp"
- android:background="@color/white"
- >
- <com.dongkesoft.ibossmini.viewscroll.NoScrollGridView
- android:id="@+id/grid_photo"
- android:layout_width="wrap_content"
- android:layout_height="90dp"
- android:layout_gravity="center_vertical"
- android:layout_marginLeft="10dp"
- android:layout_marginRight="10dp"
- android:columnWidth="90dp"
- android:minHeight="0dp"
- android:numColumns="3"
- android:stretchMode="columnWidth">
- </com.dongkesoft.ibossmini.viewscroll.NoScrollGridView>
- </LinearLayout>
- <LinearLayout
- android:id="@+id/ll_image"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="1dp"
-
- android:background="@color/white"
- >
- <LinearLayout
- android:id="@+id/ll_takephoto"
- android:layout_width="0dp"
- android:layout_weight="1"
- android:layout_height="wrap_content"
- >
- <ImageView
- android:id="@+id/iv_takephoto"
- android:layout_width="15dp"
- android:layout_marginTop="10dp"
- android:layout_marginBottom="10dp"
- android:layout_marginLeft="15dp"
- android:layout_height="13dp"
- android:background="@drawable/new_log_add_photograph">
-
-
- </ImageView>
- <TextView
- android:layout_width="wrap_content"
- android:layout_marginTop="7dp"
- android:layout_marginLeft="3dp"
- android:textSize="@dimen/textsize_13"
- android:layout_height="wrap_content"
- android:text="照相"/>
- </LinearLayout>
-
-
- <LinearLayout
- android:id="@+id/ll_localphoto"
- android:layout_width="0dp"
- android:layout_weight="1"
- android:layout_height="wrap_content"
- >
- <ImageView
- android:id="@+id/iv_localphoto"
- android:layout_width="14dp"
- android:layout_height="15dp"
- android:layout_marginTop="10dp"
- android:layout_marginBottom="10dp"
- android:background="@drawable/new_log_add_photo_album"
-
- />
- <TextView
- android:layout_width="wrap_content"
- android:layout_marginTop="8dp"
- android:textSize="@dimen/textsize_13"
- android:layout_marginLeft="3dp"
- android:layout_height="wrap_content"
- android:text="相册"
-
- />
- </LinearLayout>
- </LinearLayout>
- </LinearLayout>
|