layout_loading_dialog.xml 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  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. <!-- 根布局不设置背景,保持全透明 -->
  9. <!-- 内容容器(白色圆角卡片) -->
  10. <DirectionalLayout
  11. ohos:id="$+id:content_layout"
  12. ohos:height="match_content"
  13. ohos:width="match_content"
  14. ohos:orientation="vertical"
  15. ohos:alignment="center"
  16. ohos:padding="40vp"
  17. ohos:background_element="$graphic:background_loading_content">
  18. <!-- ProgressBar -->
  19. <ProgressBar
  20. ohos:id="$+id:progress_bar"
  21. ohos:height="80vp"
  22. ohos:width="80vp"/>
  23. <!-- 提示文字 -->
  24. <Text
  25. ohos:id="$+id:text_loading"
  26. ohos:height="match_content"
  27. ohos:width="match_content"
  28. ohos:text="加载中..."
  29. ohos:text_size="14fp"
  30. ohos:text_color="#FF666666"
  31. ohos:top_margin="16vp"/>
  32. </DirectionalLayout>
  33. </DirectionalLayout>