semi_check_defect_item.xml 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="wrap_content"
  5. android:background="@color/background"
  6. android:orientation="vertical" >
  7. <RelativeLayout
  8. android:layout_width="fill_parent"
  9. android:layout_height="wrap_content" >
  10. <TextView
  11. android:id="@+id/barcodeTv"
  12. android:layout_width="wrap_content"
  13. android:layout_height="wrap_content"
  14. android:layout_marginLeft="20dp"
  15. android:textColor="@color/white"
  16. android:textSize="@dimen/textsize_14" />
  17. </RelativeLayout>
  18. <RelativeLayout
  19. android:layout_width="fill_parent"
  20. android:layout_height="wrap_content"
  21. android:orientation="horizontal" >
  22. <TextView
  23. android:id="@+id/semiCheckTypeTv"
  24. android:layout_width="wrap_content"
  25. android:layout_height="wrap_content"
  26. android:layout_marginLeft="20dp"
  27. android:textColor="@color/white"
  28. android:textSize="@dimen/textsize_14" />
  29. </RelativeLayout>
  30. <RelativeLayout
  31. android:layout_width="fill_parent"
  32. android:layout_height="wrap_content"
  33. android:orientation="horizontal" >
  34. <TextView
  35. android:id="@+id/procedureNameTv"
  36. android:layout_width="wrap_content"
  37. android:layout_height="wrap_content"
  38. android:layout_marginLeft="20dp"
  39. android:textColor="@color/white"
  40. android:textSize="@dimen/textsize_14" />
  41. </RelativeLayout>
  42. <View
  43. android:id="@+id/separator"
  44. android:layout_width="fill_parent"
  45. android:layout_marginLeft="20dp"
  46. android:layout_marginRight="20dp"
  47. android:layout_height="1dp"
  48. android:background="@color/text_gray" />
  49. </LinearLayout>