x7_suspension_hint_dialog.xml 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="wrap_content"
  4. android:layout_height="wrap_content"
  5. android:background="#66333333"
  6. android:gravity="center"
  7. android:orientation="vertical"
  8. android:padding="15dip">
  9. <TextView
  10. android:layout_width="wrap_content"
  11. android:layout_height="wrap_content"
  12. android:layout_marginTop="15dip"
  13. android:text="@string/x7_hide_of_floating"
  14. android:textColor="@color/x7_text_green"
  15. android:textSize="18sp" />
  16. <LinearLayout
  17. android:layout_width="wrap_content"
  18. android:layout_height="wrap_content"
  19. android:layout_marginTop="15dip"
  20. android:orientation="horizontal">
  21. <CheckBox
  22. android:id="@+id/cb_suspension_hint"
  23. android:layout_width="30dip"
  24. android:layout_height="30dip"
  25. android:background="@null"
  26. android:button="@drawable/x7_change_float_cb_bg" />
  27. <TextView
  28. android:layout_width="wrap_content"
  29. android:layout_height="wrap_content"
  30. android:layout_marginLeft="15dip" android:text="@string/x7_no_longer_show_hint"
  31. android:textColor="@color/x7_white"
  32. android:textSize="18sp" />
  33. </LinearLayout>
  34. <LinearLayout
  35. android:layout_width="wrap_content"
  36. android:layout_height="wrap_content"
  37. android:layout_marginTop="20dip"
  38. android:layout_marginBottom="20dip"
  39. android:orientation="horizontal">
  40. <TextView
  41. android:id="@+id/tv_suspension_hint_cancel"
  42. android:layout_width="wrap_content"
  43. android:layout_height="wrap_content"
  44. android:background="@drawable/x7_change_float_cancel"
  45. android:clickable="true"
  46. android:paddingLeft="25dip"
  47. android:paddingTop="7dip"
  48. android:paddingRight="25dip"
  49. android:focusable="true" android:paddingBottom="7dip"
  50. android:text="@string/x7_cancel"
  51. android:textColor="@color/x7_white"
  52. android:textSize="16sp" />
  53. <TextView
  54. android:id="@+id/tv_suspension_hint_sure"
  55. android:layout_width="wrap_content"
  56. android:layout_height="wrap_content"
  57. android:layout_marginLeft="30dip" android:background="@drawable/x7_change_xuanfu_ok"
  58. android:clickable="true"
  59. android:paddingLeft="25dip"
  60. android:paddingTop="7dip"
  61. android:paddingRight="25dip"
  62. android:focusable="true" android:paddingBottom="7dip"
  63. android:text="@string/x7_sure"
  64. android:textColor="@color/x7_white"
  65. android:textSize="16sp" />
  66. </LinearLayout>
  67. </LinearLayout>