item_organization.xml 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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="match_parent"
  5. android:background="@color/white"
  6. android:orientation="vertical" >
  7. <RelativeLayout
  8. android:layout_width="match_parent"
  9. android:layout_height="wrap_content"
  10. android:layout_marginTop="15dp" >
  11. <TextView
  12. android:layout_width="wrap_content"
  13. android:layout_height="wrap_content"
  14. android:layout_marginLeft="10dp"
  15. android:text="业务编码:"
  16. android:textColor="@color/black" />
  17. <TextView
  18. android:id="@+id/tv_name"
  19. android:layout_width="wrap_content"
  20. android:layout_height="wrap_content"
  21. android:layout_marginLeft="90dp"
  22. android:text=""
  23. android:textColor="@color/black" />
  24. </RelativeLayout>
  25. <RelativeLayout
  26. android:layout_width="match_parent"
  27. android:layout_height="wrap_content"
  28. android:layout_marginTop="15dp" >
  29. <TextView
  30. android:layout_width="wrap_content"
  31. android:layout_height="wrap_content"
  32. android:layout_marginLeft="10dp"
  33. android:text="业务名称:"
  34. android:textColor="@color/black" />
  35. <TextView
  36. android:id="@+id/tv_bussion"
  37. android:layout_width="wrap_content"
  38. android:layout_height="wrap_content"
  39. android:layout_marginLeft="90dp"
  40. android:text=""
  41. android:textColor="@color/black" />
  42. </RelativeLayout>
  43. <RelativeLayout
  44. android:layout_width="match_parent"
  45. android:layout_height="wrap_content"
  46. android:layout_marginTop="15dp" >
  47. <TextView
  48. android:layout_width="wrap_content"
  49. android:layout_height="wrap_content"
  50. android:layout_marginLeft="10dp"
  51. android:text="业务全名:"
  52. android:textColor="@color/black" />
  53. <TextView
  54. android:id="@+id/tv_code"
  55. android:layout_width="wrap_content"
  56. android:layout_height="wrap_content"
  57. android:layout_marginLeft="90dp"
  58. android:text=""
  59. android:textColor="@color/black" />
  60. </RelativeLayout>
  61. <View
  62. android:layout_marginTop="10dp"
  63. android:layout_height="1dp"
  64. android:layout_width="match_parent"
  65. android:background="@color/lightgray"/>
  66. </LinearLayout>