HarmonyOS APP - Switch体验与分享 原创

鸿蒙时代
发布于 2021-3-24 10:09
浏览
2收藏

Switch是切换单个设置开/关两种状态的组件。我们体验效果如下。

显示效果:

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

滑动按钮

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

 

代码如下:

布局中

<?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">

    <Switch
        ohos:id="$+id:btn_switch"
        ohos:height="30vp"
        ohos:width="60vp"
        ohos:top_margin="40px"
        ohos:left_margin="400px"
        ohos:text_state_off="OFF"
        ohos:text_state_on="ON"/>

</DirectionalLayout>

 

完整源码地址:

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

©著作权归作者所有,如需转载,请注明出处,否则将追究法律责任
标签
已于2021-3-24 10:20:09修改
2
收藏 2
回复
举报
2条回复
按时间正序
/
按时间倒序
鸿蒙张荣超
鸿蒙张荣超

👍不错

回复
2021-3-24 13:37:42
红叶亦知秋
红叶亦知秋

每天都可以看到李洋老师的文章,老师真是勤奋

回复
2021-3-24 16:12:14
回复
    相关推荐