实现类似QQ滑动出现可操作项的功能,在网上看到有人自定义LinearLayout实现这个效果,但是灵活性有限。此demo使用开源项目SwipeLayout实现该功能。关于SwipeLayout的常用设置和属性,这里都做介绍,下面进入正题。
一、效果图
二、代码片段
主页布局和主页的Java代码都和平时使用没有区别,代码没必要贴出来了。这里使用的ListView演示,还可以是GridView,ExpandableListView。
最关键的代码部分,ListView适配器布局:
<?xml version="1.0" encoding="utf-8"?><com.daimajia.swipe.SwipeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" android:id="@+id/swipe" android:layout_width="match_parent" android:layout_height="match_parent" app:drag_edge="right"> <LinearLayout android:id="@+id/trash" android:layout_width="160dp" android:layout_height="match_parent" android:gravity="center" android:orientation="horizontal" android:tag="Bottom"> <TextView android:id="@+id/swipe_open" android:layout_width="1dp" android:layout_height="match_parent" android:layout_weight="1" android:background="#f55509" android:gravity="center" android:text="打开" android:textColor="@android:color/white" android:textSize="20sp" /> <TextView android:id="@+id/swipe_delete" android:layout_width="1dp" android:layout_height="match_parent" android:layout_weight="1" android:background="@android:color/holo_red_dark" android:gravity="center" android:text="删除" android:textColor="@android:color/white" android:textSize="20sp" /> </LinearLayout> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:background="@android:color/white" android:gravity="center_vertical" android:orientation="horizontal" android:padding="5dp"> <ImageView android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@drawable/ic_launcher" /> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:background="@android:color/white" android:orientation="vertical" android:paddingLeft="5dp"> <TextView android:id="@+id/tv_nickname" android:layout_width="match_parent" android:layout_height="wrap_content" android:textSize="17sp" /> <TextView android:id="@+id/tv_msg" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginTop="5dp" android:textSize="15sp" /> </LinearLayout> </LinearLayout></com.daimajia.swipe.SwipeLayout>
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
软考中级精品资料免费领
- 历年真题答案解析
- 备考技巧名师总结
- 高频考点精准押题
- 资料下载
- 历年真题
193.9 KB下载数265
191.63 KB下载数245
143.91 KB下载数1142
183.71 KB下载数642
644.84 KB下载数2755
相关文章
发现更多好内容猜你喜欢
AI推送时光机Android实现QQ侧滑(删除、置顶等)功能
后端开发2023-05-30
Android仿QQ首页ListView左滑置顶、删除功能
后端开发2023-05-30
android实现QQ微信侧滑删除效果
后端开发2023-05-30
Android仿QQ左滑删除置顶ListView操作
后端开发2022-06-06
uniapp怎么实现侧滑删除功能
后端开发2023-05-14
小程序实现侧滑删除功能
后端开发2024-04-02
vue怎么实现仿qq左滑置顶删除组件
后端开发2023-07-04
小程序如何实现侧滑删除功能
后端开发2023-07-02
Android Recyclerview实现左滑删除功能
后端开发2024-04-02
怎么在Android中利用ListView实现一个侧滑删除功能
后端开发2023-05-31
mpvue小程序如何实现仿qq左滑置顶删除组件
后端开发2024-04-02
Android recyclerview实现拖拽排序和侧滑删除
后端开发2022-06-06
Android开发中模仿qq列表信息滑动删除功能
后端开发2022-06-06
Android中RecyclerView实现滑动删除与拖拽功能
后端开发2022-06-06
Android如何实现微信侧滑删除当前页面
后端开发2023-05-30
Android仿iOS如何实现侧滑返回功能
后端开发2023-05-30
vue怎么实现左滑删除功能
后端开发2023-07-04
咦!没有更多了?去看看其它编程学习网 内容吧