activity_water_label_check.xml 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2. xmlns:tools="http://schemas.android.com/tools"
  3. android:layout_width="fill_parent"
  4. android:layout_height="fill_parent"
  5. android:background="@color/white"
  6. >
  7. <include layout="@layout/fragment_title"
  8. android:id="@+id/tile" />
  9. <LinearLayout
  10. android:id="@+id/waterLabelLay"
  11. android:layout_below="@id/tile"
  12. android:layout_marginTop="20dp"
  13. android:layout_width="fill_parent"
  14. android:layout_height="wrap_content"
  15. android:orientation="horizontal"
  16. >
  17. <TextView
  18. android:layout_marginLeft="10dp"
  19. android:layout_width="wrap_content"
  20. android:layout_height="wrap_content"
  21. android:textSize="@dimen/textsize_16"
  22. android:text="水效标识:"
  23. />
  24. <LinearLayout
  25. android:layout_width="fill_parent"
  26. android:layout_height="wrap_content"
  27. android:orientation="vertical"
  28. >
  29. <EditText
  30. android:id="@+id/edtWaterLabel"
  31. android:layout_width="fill_parent"
  32. android:layout_height="wrap_content"
  33. android:singleLine="true"
  34. android:textSize="@dimen/textsize_16"
  35. android:background="@null"
  36. android:imeOptions="actionGo"
  37. android:text=""
  38. android:layout_marginRight="10dp"
  39. />
  40. <View
  41. android:layout_width="fill_parent"
  42. android:layout_height="1dp"
  43. android:layout_marginRight="10dp"
  44. android:background="@color/text_gray"
  45. />
  46. </LinearLayout>
  47. </LinearLayout>
  48. </RelativeLayout>