jmexitdialog_8.xml 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:id="@+id/linear"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent"
  6. android:gravity="center"
  7. android:orientation="vertical">
  8. <LinearLayout
  9. android:layout_width="320dp"
  10. android:layout_height="150dp"
  11. android:layout_gravity="center"
  12. android:background="@color/jmfont_white"
  13. android:orientation="vertical">
  14. <TextView
  15. android:layout_width="match_parent"
  16. android:layout_height="55dp"
  17. android:gravity="center"
  18. android:text="@string/exit_title_tip"
  19. android:textColor="@color/jmfont_gray"
  20. android:textSize="18sp"/>
  21. <TextView
  22. android:layout_width="match_parent"
  23. android:layout_height="45dp"
  24. android:gravity="center_horizontal"
  25. android:text="@string/exit_title"
  26. android:textColor="@color/jmfont_gray"
  27. android:textSize="16sp"/>
  28. <View
  29. android:layout_width="match_parent"
  30. android:layout_height="0.5dp"
  31. android:background="@color/jmfont_gray"/>
  32. <LinearLayout
  33. android:layout_width="320dp"
  34. android:layout_height="match_parent"
  35. android:gravity="center"
  36. android:orientation="horizontal">
  37. <Button
  38. android:id="@+id/dialog_cancel"
  39. android:layout_width="159.5dp"
  40. android:layout_height="match_parent"
  41. android:background="@color/jm_transparent"
  42. android:gravity="center"
  43. android:text="@string/jm_cancel"
  44. android:textAllCaps="false"
  45. android:textColor="@color/jmfont_fonts_blues"
  46. android:textSize="15sp"/>
  47. <View
  48. android:layout_width="0.5dp"
  49. android:layout_height="match_parent"
  50. android:background="@color/jmfont_gray"/>
  51. <Button
  52. android:id="@+id/dialog_exit"
  53. android:layout_width="159.5dp"
  54. android:layout_height="match_parent"
  55. android:background="@color/jm_transparent"
  56. android:gravity="center"
  57. android:text="@string/jm_confirm"
  58. android:textAllCaps="false"
  59. android:textColor="@color/jmfont_fonts_blues"
  60. android:textSize="15sp"/>
  61. </LinearLayout>
  62. </LinearLayout>
  63. </LinearLayout>