HarmonyOS APP - ProgressBar体验与分享 原创

鸿蒙时代
发布于 2021-3-29 14:27
浏览
0收藏

ProgressBar用于显示内容或操作的进度。下面将进行对该组件简单的操作,通过添加不同的属性展示出不同的样式效果。如下:

效果显示:

  HarmonyOS APP - ProgressBar体验与分享-鸿蒙开发者社区

布局中的代码

<?xml version="1.0" encoding="utf-8"?>
<DirectionalLayout
    xmlns:ohos="http://schemas.huawei.com/res/ohos"
    ohos:height="match_parent"
    ohos:width="match_parent"
    ohos:orientation="vertical"
    ohos:background_element="#FF5A5858">
<Text
    ohos:height="match_content"
    ohos:width="match_content"
    ohos:text="创建ProgressBar效果"
    ohos:text_size="22fp"
    ohos:text_color="red"/>
    <ProgressBar
        ohos:progress_width="10vp"
        ohos:height="60vp"
        ohos:width="800px"
        ohos:max="100"
        ohos:min="0"
        ohos:progress="60"/>
    <Text
        ohos:height="match_content"
        ohos:width="match_content"
        ohos:text="垂直ProgressBar效果。"
        ohos:text_size="22fp"
        ohos:text_color="red"/>
    <Text
        ohos:height="match_content"
        ohos:width="match_content"
        ohos:text="设置ProgressBar颜色效果。"
        ohos:text_size="22fp"
        ohos:text_color="red"/>
    <ProgressBar
        ohos:orientation="vertical"
        ohos:top_margin="20vp"
        ohos:height="150vp"
        ohos:width="60vp"
        ohos:progress_width="10vp"
        ohos:max="100"
        ohos:min="0"
        ohos:progress="60"
        ohos:background_instruct_element="#FFFFFF"
        ohos:progress_element="#FF9900"/>
    <Text
        ohos:height="match_content"
        ohos:width="match_content"
        ohos:text="添加分割线效果。"
        ohos:text_size="22fp"
        ohos:text_color="red"/>
    <ProgressBar
        ohos:progress_width="10vp"
        ohos:height="60vp"
        ohos:width="800px"
        ohos:max="100"
        ohos:min="0"
        ohos:progress="40"
        ohos:divider_lines_enabled="true"
        ohos:divider_lines_number="5"/>
    <Text
        ohos:height="match_content"
        ohos:width="match_content"
        ohos:text="设置提示文字效果。"
        ohos:text_size="22fp"
        ohos:text_color="red"/>
    <ProgressBar
        ohos:progress_width="10vp"
        ohos:height="60vp"
        ohos:width="800px"
        ohos:max="100"
        ohos:min="0"
        ohos:progress="40"
        ohos:divider_lines_enabled="true"
        ohos:divider_lines_number="5"
        ohos:progress_hint_text="40%"
        ohos:progress_hint_text_color="#FFCC99" />
</DirectionalLayout>

完整代码地址:

https://gitee.com/jltfcloudcn/jump_to/tree/master/jltf_progressBar_component

©著作权归作者所有,如需转载,请注明出处,否则将追究法律责任
分类
标签
已于2021-3-29 16:53:47修改
收藏
回复
举报
回复
    相关推荐