tysdkn_switch_trumpet_dialog.xml 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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="match_parent"
  5. android:layout_height="wrap_content"
  6. android:layout_gravity="center"
  7. android:background="@drawable/tysdkn_pay_item"
  8. >
  9. <TextView
  10. android:layout_width="match_parent"
  11. android:layout_height="wrap_content"
  12. android:textColor="#111111"
  13. android:textSize="15dp"
  14. android:layout_margin="25dp"
  15. android:gravity="center"
  16. android:textStyle="bold"
  17. android:text="是否切换小号"/>
  18. <TextView
  19. android:layout_width="match_parent"
  20. android:layout_height="wrap_content"
  21. android:textColor="#111111"
  22. android:textSize="13sp"
  23. android:gravity="center"
  24. android:text="切换小号后将会在下次登录游戏时自动生效"/>
  25. <ImageView
  26. android:layout_width="match_parent"
  27. android:layout_marginTop="20dp"
  28. android:layout_height="1dp"
  29. android:background="#DCDCDC"/>
  30. <LinearLayout
  31. android:layout_width="match_parent"
  32. android:layout_height="40dp"
  33. android:orientation="horizontal"
  34. >
  35. <TextView
  36. android:id="@+id/tysdkn_dialog_cancel"
  37. android:layout_width="0dp"
  38. android:layout_height="match_parent"
  39. android:layout_weight="1"
  40. android:gravity="center"
  41. android:textSize="12sp"
  42. android:layout_gravity="center"
  43. android:textColor="#30B8FF"
  44. android:text="取消"/>
  45. <ImageView
  46. android:layout_width="1dp"
  47. android:layout_height="match_parent"
  48. android:background="#DCDCDC"/>
  49. <TextView
  50. android:id="@+id/tysdkn_dialog_confirm"
  51. android:layout_width="0dp"
  52. android:layout_height="match_parent"
  53. android:layout_weight="1"
  54. android:gravity="center"
  55. android:layout_gravity="center"
  56. android:background="@drawable/tysdkn_btn_dialog_sure"
  57. android:textColor="#ffffff"
  58. android:textSize="12sp"
  59. android:text="确认"/>
  60. </LinearLayout>
  61. </LinearLayout>