文章详情

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

请输入下面的图形验证码

提交验证

短信预约提醒成功

Android实现QQ侧滑(删除、置顶等)功能

2023-05-30 17:14

关注

实现类似QQ滑动出现可操作项的功能,在网上看到有人自定义LinearLayout实现这个效果,但是灵活性有限。此demo使用开源项目SwipeLayout实现该功能。关于SwipeLayout的常用设置和属性,这里都做介绍,下面进入正题。

一、效果图

Android实现QQ侧滑(删除、置顶等)功能

二、代码片段

主页布局和主页的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

软考中级精品资料免费领

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

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

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

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

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

    难度     221人已做
    查看

相关文章

发现更多好内容
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯