充电桩app代码

layout_isbuy.xml 3.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:background="@drawable/bg_yinying531">
  6. <LinearLayout
  7. android:id="@+id/linearLayout3"
  8. android:layout_width="match_parent"
  9. android:layout_height="wrap_content"
  10. android:layout_alignParentBottom="true"
  11. android:orientation="vertical">
  12. <LinearLayout
  13. android:id="@+id/ll_tvOne"
  14. android:layout_width="match_parent"
  15. android:layout_height="45dp"
  16. android:background="@color/bg_row"
  17. android:visibility="gone">
  18. <TextView
  19. android:id="@+id/tvOne"
  20. android:layout_width="match_parent"
  21. android:layout_height="45dp"
  22. android:layout_gravity="center_horizontal"
  23. android:clickable="true"
  24. android:gravity="center"
  25. android:text="请上传您的驾驶证图片"
  26. android:textColor="@color/hintColor"
  27. android:textSize="17sp" />
  28. </LinearLayout>
  29. <LinearLayout
  30. android:id="@+id/ll_tvTwo"
  31. android:layout_width="match_parent"
  32. android:layout_height="45dp"
  33. android:background="@color/bg_row">
  34. <Button
  35. android:id="@+id/tvTwo"
  36. android:layout_width="match_parent"
  37. android:layout_height="45dp"
  38. android:layout_gravity="center_horizontal"
  39. android:background="@color/white"
  40. android:clickable="true"
  41. android:gravity="center"
  42. android:text="已购买"
  43. android:textColor="@color/actionsheet_green"
  44. android:textSize="17sp" />
  45. </LinearLayout>
  46. <View
  47. android:layout_width="match_parent"
  48. android:layout_height="0.5dp"
  49. android:background="@color/Line" />
  50. <LinearLayout
  51. android:id="@+id/ll_tvThree"
  52. android:layout_width="match_parent"
  53. android:layout_height="45dp"
  54. android:background="@color/bg_row">
  55. <Button
  56. android:id="@+id/tvThree"
  57. android:layout_width="match_parent"
  58. android:layout_height="45dp"
  59. android:layout_gravity="center_horizontal"
  60. android:background="@color/white"
  61. android:clickable="true"
  62. android:gravity="center"
  63. android:text="未购买"
  64. android:textColor="@color/actionsheet_green"
  65. android:textSize="17sp" />
  66. </LinearLayout>
  67. <View
  68. android:layout_width="match_parent"
  69. android:layout_height="0.5dp"
  70. android:background="@color/in_line" />
  71. <!--<Button-->
  72. <!--android:id="@+id/confirmButton"-->
  73. <!--android:layout_width="fill_parent"-->
  74. <!--android:layout_height="wrap_content"-->
  75. <!--android:layout_gravity="center"-->
  76. <!--android:layout_margin="5dp"-->
  77. <!--android:layout_weight="1"-->
  78. <!--android:background="@drawable/textview_style"-->
  79. <!--android:text="确定"-->
  80. <!--android:textColor="#009DDA"-->
  81. <!--android:visibility="visible" />-->
  82. <Button
  83. android:id="@+id/cancleButton"
  84. android:layout_width="fill_parent"
  85. android:layout_height="45dp"
  86. android:layout_gravity="center"
  87. android:layout_marginTop="4dp"
  88. android:background="@color/white"
  89. android:text="取 消"
  90. android:textSize="18sp"
  91. android:textColor="@color/actionsheet_green" />
  92. </LinearLayout>
  93. </RelativeLayout>