hnyy_exit_game_dialog.xml 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:id="@+id/ll_exit_game"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent"
  6. android:gravity="center"
  7. android:background="@drawable/hnyy_exit_bg"
  8. android:orientation="vertical" >
  9. <LinearLayout
  10. android:layout_width="320dp"
  11. android:layout_height="150dp"
  12. android:layout_gravity="center"
  13. android:orientation="vertical" >
  14. <TextView
  15. android:layout_width="match_parent"
  16. android:layout_height="50dp"
  17. android:gravity="center"
  18. android:text="@string/hnyy_title_tip"
  19. android:textColor="@color/hnyy_text_black"
  20. android:textSize="18sp"
  21. android:textStyle="bold"
  22. />
  23. <TextView
  24. android:id="@+id/hnyy_issure_exit"
  25. android:layout_width="190dp"
  26. android:layout_height="45dp"
  27. android:gravity="center_horizontal"
  28. android:text="@string/hnyy_issure_exit"
  29. android:textColor="@color/hnyy_edittext_bg_deep_gray"
  30. android:textSize="17sp"
  31. android:layout_gravity="center"/>
  32. <RelativeLayout
  33. android:layout_width="320dp"
  34. android:layout_height="match_parent"
  35. android:orientation="horizontal">
  36. <Button
  37. android:id="@+id/find_pwd_cancel_btn"
  38. android:layout_width="130dp"
  39. android:layout_height="40dp"
  40. android:background="@drawable/hnyy_btn_exit_bg"
  41. android:gravity="center"
  42. android:text="@string/hnyy_cancel"
  43. android:textColor="@color/hnyy_text_cyan_color"
  44. android:textSize="15sp"
  45. android:layout_marginLeft="15dp"
  46. android:layout_centerVertical="true"/>
  47. <Button
  48. android:id="@+id/find_pwd_confirm_btn"
  49. android:layout_width="130dp"
  50. android:layout_height="40dp"
  51. android:background="@drawable/hnyy_login_button_style"
  52. android:gravity="center"
  53. android:text="@string/hnyy_sure"
  54. android:textColor="@color/hnyy_white"
  55. android:textSize="15sp"
  56. android:layout_alignParentRight="true"
  57. android:layout_marginRight="15dp"
  58. android:layout_centerVertical="true"/>
  59. </RelativeLayout>
  60. </LinearLayout>
  61. </LinearLayout>