layout_confirm_dialog.xml 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <DirectionalLayout
  3. xmlns:ohos="http://schemas.huawei.com/res/ohos"
  4. ohos:height="match_parent"
  5. ohos:width="match_parent"
  6. ohos:alignment="center"
  7. ohos:orientation="vertical"
  8. ohos:background_element="#80000000">
  9. <!-- 半透明黑色背景 -->
  10. <!-- 对话框内容容器(白色圆角卡片) -->
  11. <DirectionalLayout
  12. ohos:id="$+id:dialog_container"
  13. ohos:height="match_content"
  14. ohos:width="280vp"
  15. ohos:orientation="vertical"
  16. ohos:background_element="$graphic:background_circle_16"
  17. ohos:padding="24vp">
  18. <!-- 标题 -->
  19. <Text
  20. ohos:id="$+id:dialog_title"
  21. ohos:height="match_content"
  22. ohos:width="match_parent"
  23. ohos:text="提示"
  24. ohos:text_size="18fp"
  25. ohos:text_color="#666666"
  26. ohos:text_weight="700"
  27. ohos:text_alignment="center"
  28. ohos:margin="0vp"/>
  29. <!-- 消息内容 -->
  30. <Text
  31. ohos:id="$+id:dialog_message"
  32. ohos:height="match_content"
  33. ohos:width="match_parent"
  34. ohos:text="确认要执行此操作吗?"
  35. ohos:text_size="15fp"
  36. ohos:text_color="#333333"
  37. ohos:text_alignment="center"
  38. ohos:top_margin="16vp"
  39. ohos:multiple_lines="true"/>
  40. <!-- 按钮容器 -->
  41. <DirectionalLayout
  42. ohos:height="match_content"
  43. ohos:width="match_parent"
  44. ohos:orientation="horizontal"
  45. ohos:top_margin="24vp"
  46. ohos:alignment="center">
  47. <!-- 取消按钮(左边) -->
  48. <Button
  49. ohos:id="$+id:btn_cancel"
  50. ohos:height="40vp"
  51. ohos:width="0vp"
  52. ohos:weight="1"
  53. ohos:text="取消"
  54. ohos:text_size="15fp"
  55. ohos:text_color="#FFFFFF"
  56. ohos:background_element="$graphic:button_cancel"
  57. ohos:right_margin="8vp"/>
  58. <!-- 确定按钮(右边) -->
  59. <Button
  60. ohos:id="$+id:btn_confirm"
  61. ohos:height="40vp"
  62. ohos:width="0vp"
  63. ohos:weight="1"
  64. ohos:text="确定"
  65. ohos:text_size="15fp"
  66. ohos:text_color="#FFFFFF"
  67. ohos:background_element="$graphic:button"
  68. ohos:left_margin="8vp"/>
  69. </DirectionalLayout>
  70. </DirectionalLayout>
  71. </DirectionalLayout>