post_road_damaged_billet_item.xml 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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/scrapProcedureTv"
  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/dutyProcedureTv"
  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 android:id="@+id/separator"
  43. android:layout_width="fill_parent"
  44. android:layout_marginLeft="20dp"
  45. android:layout_marginRight="20dp"
  46. android:layout_height="1dp"
  47. android:background="@color/text_gray" />
  48. </LinearLayout>