xunqu_dialog_pay_quit.xml 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:orientation="vertical"
  4. android:layout_width="240dp"
  5. android:layout_height="wrap_content"
  6. android:paddingLeft="8dp"
  7. android:paddingRight="8dp"
  8. android:background="@drawable/ixunqu_dialog_pay_quit"
  9. android:paddingTop="4dp"
  10. android:paddingBottom="4dp"
  11. >
  12. <TextView
  13. android:text="@string/xunqu_dialog_pay_quit_text_title"
  14. android:gravity="center"
  15. android:layout_gravity="center_horizontal"
  16. android:layout_width="match_parent"
  17. android:layout_height="wrap_content"
  18. android:textSize="18sp"
  19. android:layout_marginTop="4dp"
  20. android:layout_marginBottom="4dp"
  21. android:textColor="@android:color/black"
  22. />
  23. <!-- 分割线 -->
  24. <View
  25. android:layout_width="match_parent"
  26. android:layout_height="0.4dp"
  27. android:background="#ff0099cc" />
  28. <TextView
  29. android:text="@string/xunqu_dialog_pay_quit_text_detail"
  30. android:textColor="@android:color/black"
  31. android:gravity="center"
  32. android:layout_width="match_parent"
  33. android:layout_height="wrap_content"
  34. android:padding="8dp"
  35. android:layout_marginBottom="4dp"
  36. android:textSize="18sp"
  37. />
  38. <LinearLayout
  39. android:layout_width="match_parent"
  40. android:layout_height="wrap_content"
  41. android:orientation="horizontal"
  42. android:weightSum="2"
  43. android:layout_marginBottom="4dp"
  44. >
  45. <Button
  46. android:id="@+id/xunqu_dialog_pay_quit_btn_close"
  47. android:text="@string/xunqu_dialog_pay_quit_btn_close"
  48. android:layout_width="0dp"
  49. android:layout_weight="1"
  50. android:layout_height="wrap_content"
  51. style="@style/xunqu_dialog_pay_quit_btn_close"
  52. />
  53. <Button
  54. android:id="@+id/xunqu_dialog_pay_quit_btn_continue"
  55. android:text="@string/xunqu_dialog_pay_quit_btn_continue"
  56. android:layout_width="0dp"
  57. android:layout_weight="1"
  58. android:layout_height="wrap_content"
  59. style="@style/xunqu_dialog_pay_quit_btn_continue"
  60. />
  61. </LinearLayout>
  62. </LinearLayout>