adapter_collecte_amount.xml 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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. <LinearLayout
  8. android:layout_width="fill_parent"
  9. android:layout_height="wrap_content"
  10. android:layout_marginLeft="10dp"
  11. android:layout_marginTop="10dp"
  12. android:orientation="horizontal" >
  13. <TextView
  14. android:id="@+id/tv_title_settlement_type"
  15. android:layout_width="wrap_content"
  16. android:layout_height="wrap_content"
  17. android:text="结算方式:"
  18. android:textColor="@color/black"
  19. android:textSize="@dimen/textsize_14" />
  20. <TextView
  21. android:id="@+id/tv_settlement_type"
  22. android:layout_width="wrap_content"
  23. android:layout_height="wrap_content"
  24. android:layout_marginLeft="5dp"
  25. android:textColor="@color/black"
  26. android:textSize="@dimen/textsize_14" />
  27. </LinearLayout>
  28. <LinearLayout
  29. android:layout_width="fill_parent"
  30. android:layout_height="wrap_content"
  31. android:layout_marginBottom="10dp"
  32. android:layout_marginLeft="10dp"
  33. android:layout_marginTop="10dp"
  34. android:orientation="horizontal" >
  35. <TextView
  36. android:id="@+id/tv_title_amount"
  37. android:layout_width="wrap_content"
  38. android:layout_height="wrap_content"
  39. android:text="金 额:"
  40. android:textColor="@color/black"
  41. android:textSize="@dimen/textsize_14" />
  42. <EditText
  43. android:id="@+id/edt_amount"
  44. android:layout_width="wrap_content"
  45. android:layout_height="wrap_content"
  46. android:layout_marginLeft="5dp"
  47. android:background="@null"
  48. android:hint="请输入金额"
  49. android:textColor="@color/black"
  50. android:textSize="@dimen/textsize_14" />
  51. </LinearLayout>
  52. <View
  53. android:layout_width="match_parent"
  54. android:layout_height="1dp"
  55. android:background="@color/EBEBEB" />
  56. </LinearLayout>