文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

鸿蒙HarmonyOS三方件开发指南-SwipeLayout侧滑删除

2024-12-03 09:59

关注

想了解更多内容,请访问:

51CTO和华为官方合作共建的鸿蒙技术社区

https://harmonyos.51cto.com

1. SwipeLayout组件功能介绍

1.1.功能介绍:

SwipeLayout组件是一个侧滑删除组件。

1.2. 模拟器上运行效果:

2. SwipeLayout使用方法

2.1. 新建工程,增加组件Har包依赖

在应用模块中添加HAR,只需要将SwipeLayout.har复制到entry\libs目录下即可(由于build.gradle中已经依赖的libs目录下的*.har,因此不需要再做修改)。

2.2. 修改主页面的布局文件

修改主页面的布局文件ability_main.xml,将自定义的SwipeLayout添加到xml中,将初始状态下展示的视图添加到SwipeLayout作为index为0的子视图:

  1. "1.0" encoding="utf-8"?> 
  2.     xmlns:ohos="http://schemas.huawei.com/res/ohos" 
  3.     ohos:id="$+id:total1" 
  4.     ohos:height="match_parent" 
  5.     ohos:width="match_parent" 
  6.     ohos:background_element="gray" 
  7.     ohos:orientation="vertical"
  8.     
  9.         ohos:id="$+id:sample2" 
  10.         ohos:height="80vp" 
  11.         ohos:width="match_parent" 
  12.         ohos:orientation="horizontal"
  13.         
  14.             ohos:id="$+id:bottom_layout1" 
  15.             ohos:height="match_parent" 
  16.             ohos:width="match_parent" 
  17.             ohos:background_element="white" 
  18.             ohos:multiple_lines="true" 
  19.             ohos:padding="10" 
  20.             ohos:text="要有最樸素的生活和最遙遠的夢想,即使明天天寒地凍,山高水遠,路遠馬亡。" 
  21.             ohos:text_alignment="left" 
  22.             ohos:text_size="14fp" 
  23.             ohos:visibility="visible"
  24.          
  25.         
  26.             ohos:id="$+id:bottom_wrapper1" 
  27.             ohos:height="match_parent" 
  28.             ohos:width="360px" 
  29.             ohos:background_element="#ddff00" 
  30.             ohos:orientation="horizontal" 
  31.             ohos:visibility="visible"
  32.             
  33.                 ohos:id="$+id:Texts1" 
  34.                 ohos:height="match_parent" 
  35.                 ohos:width="180px" 
  36.                 ohos:background_element="#7B1FA2" 
  37.                 ohos:left_padding="25" 
  38.                 ohos:right_padding="25" 
  39.                 ohos:text="收藏" 
  40.                 ohos:text_alignment="center" 
  41.                 ohos:text_color="#DC143C" 
  42.                 ohos:text_size="14fp" 
  43.                 ohos:visibility="visible" 
  44.                 /> 
  45.             
  46.                 ohos:id="$+id:texts2" 
  47.                 ohos:height="match_parent" 
  48.                 ohos:width="180px" 
  49.                 ohos:background_element="#C7C7CC" 
  50.                 ohos:left_padding="25" 
  51.                 ohos:right_padding="25" 
  52.                 ohos:text="删除" 
  53.                 ohos:text_alignment="center" 
  54.                 ohos:text_color="#DC143C" 
  55.                 ohos:text_size="14fp" 
  56.                 ohos:visibility="visible" 
  57.                 /> 
  58.          
  59.         
  60.             ohos:id="$+id:images3" 
  61.             ohos:height="match_parent" 
  62.             ohos:width="match_parent" 
  63.             ohos:background_element="gray" 
  64.             ohos:image_src="$media:star" 
  65.             /> 
  66.         
  67.             ohos:id="$+id:bottom_fronts" 
  68.             ohos:height="match_parent" 
  69.             ohos:width="match_content" 
  70.             ohos:background_element="#ddff00" 
  71.             ohos:orientation="horizontal" 
  72.             ohos:visibility="visible"
  73.             
  74.                 ohos:id="$+id:images1" 
  75.                 ohos:height="match_parent" 
  76.                 ohos:width="180px" 
  77.                 ohos:background_element="green" 
  78.                 ohos:image_src="$media:star"/> 
  79.             
  80.                 ohos:id="$+id:images2" 
  81.                 ohos:height="match_parent" 
  82.                 ohos:width="180px" 
  83.                 ohos:background_element="red" 
  84.                 ohos:image_src="$media:trash"/> 
  85.          
  86.      
  87.     
  88.         ohos:id="$+id:images" 
  89.         ohos:height="match_content" 
  90.         ohos:width="match_content" 
  91.         ohos:background_element="green" 
  92.         ohos:image_src="$media:star" 
  93.         ohos:layout_alignment="horizontal_center" 
  94.         ohos:top_margin="100vp"/> 
  95.  

2.3. 初始化SwipeLayout

在MainAbilitySlince类的onStart函数中,增加如下代码。

  1. SwipeLayout swipeLayout = (SwipeLayout) findComponentById(ResourceTable.Id_sample1); 
  2. DirectionalLayout right = (DirectionalLayout) findComponentById(ResourceTable.Id_bottom_wrapper); 
  3. //初始化 
  4. swipeLayout.initializeSwipe(); 
  5. DirectionalLayout left = (DirectionalLayout) findComponentById(ResourceTable.Id_bottom_front); 
  6. Image image3 = (Image) findComponentById(ResourceTable.Id_image3); 
  7. //将各个方向拖拽时对应展示的视图添加到swipeLayout 
  8. swipeLayout.addDrag(SwipeLayout.DragEdge.Leftright); 
  9. swipeLayout.addDrag(SwipeLayout.DragEdge.Rightleft); 
  10. swipeLayout.addDrag(SwipeLayout.DragEdge.Bottom, image3); 

3. SwipeLayout开发实现

3.1. 新建一个Module

新建一个Module,类型选择HarmonyOS Library,模块名为SwipeLayout,如图

3.2. 新建一个SwipeLayout类

新建一个SwipeLayout类,继承自PositionLayout类

SwipeLayout的主要流程:

首先通过xml的构造方法,为SwipeLayout添加拖拽监听;

将LinkedHashMap

通过public void addDrag(DragEdge dragEdge, Component child) 方法将可拖拽的方向和对应展示的视图添加到mDragEdges,并设置其初始的ContentPosition;

  1. public void addDrag(DragEdge dragEdge, Component child) { 
  2.     mDragEdges.put(dragEdge, child); 
  3.     switch (dragEdge) { 
  4.         case Left
  5.             child.setContentPosition(getWidth(), 0); 
  6.             break; 
  7.         case Right
  8.             HiLog.info(label, "Log_addDrag" + child.getHeight()); 
  9.             child.setContentPosition(-child.getWidth(), 0); 
  10.             break; 
  11.         case Top
  12.             child.setContentPosition(0, getHeight()); 
  13.             break; 
  14.         case Bottom: 
  15.             child.setContentPosition(0, -child.getHeight()); 
  16.             break; 
  17.     } 
  18.     child.setVisibility(INVISIBLE); 
  19.     addComponent(child, 0); 

在拖拽动作的监听回调方法中完成对视图的更新

A.在update回调中设置打开和关闭的边界以及边界内的位置刷新

  1. if (getSurfaceView().getContentPositionY() + dragInfo.yOffset <= 0) { 
  2.     close(); 
  3. else if (getSurfaceView().getContentPositionY() + dragInfo.yOffset >= getHeight()) { 
  4.     open(); 
  5. else { 
  6.     getSurfaceView().setContentPositionY(getSurfaceView().getContentPositionY() + (float) dragInfo.yOffset); 
  7.     getCurrentBottomView().setContentPositionY(getCurrentBottomView().getContentPositionY() + (float) dragInfo.yOffset); 

B.在end中判断滑动的距离,如果大于设定的滑动距离则直接将控件展开或者关闭

  1. if (isCloseBeforeDrag && mDragDistanceY < 0) { 
  2.     if (Math.abs(mDragDistanceY) >= mWillOpenPercentAfterClose * getBottomViewHeight()) { 
  3.         open(); 
  4.     } else { 
  5.         close(); 
  6.     } 
  7. if (!isCloseBeforeDrag && mDragDistanceY > 0) { 
  8.     if (Math.abs(mDragDistanceY) >= mWillOpenPercentAfterClose * getBottomViewHeight()) { 
  9.         close(); 
  10.     } else { 
  11.         open(); 
  12.     } 

3.3. 编译HAR包

利用Gradle可以将HarmonyOS Library库模块构建为HAR包,构建HAR包的方法如下:

在Gradle构建任务中,双击PackageDebugHar或PackageReleaseHar任务,构建Debug类型或Release类型的HAR。

待构建任务完成后,可以loadingview> bulid > outputs > har目录中,获取生成的HAR包。

项目源代码地址:https://github.com/isoftstone-dev/SwipeBackLayout

欢迎交流:HWIS-HOS@isoftstone.com

想了解更多内容,请访问:

51CTO和华为官方合作共建的鸿蒙技术社区

https://harmonyos.51cto.com

 

来源:鸿蒙社区内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯