内容简介:我有一些文本列表.我想在滑动动作中显示图像(几乎像在gmail应用程序中).例如,如果我从左到右滑动 – 我的列表项目正在移动,图像从左侧滑动.我的列表项可以移动不超过图像宽度.刷卡停止后,列表项目正在移动到开始位置.我该怎么做这样的事情?代码日志版权声明:翻译自:http://stackoverflow.com/questions/18386395/android-listview-swipe-to-action
我有一些文本列表.我想在滑动动作中显示图像(几乎像在gmail应用程序中).例如,如果我从左到右滑动 – 我的列表项目正在移动,图像从左侧滑动.我的列表项可以移动不超过图像宽度.刷卡停止后,列表项目正在移动到开始位置.我该怎么做这样的事情?
查看 this
.
在那里,您可以看到右侧的列表视图滑动显示视图.
快:
main_activity.xml:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:swipe="http://schemas.android.com/apk/res-auto" android:orientation="vertical" android:layout_width="match_parent" android:layout_height="match_parent"> <com.fortysevendeg.swipelistview.SwipeListView android:id="@+id/example_swipe_lv_list" android:listSelector="#00000000" android:layout_width="fill_parent" android:layout_height="wrap_content" swipe:swipeFrontView="@+id/front" swipe:swipeBackView="@+id/back" swipe:swipeDrawableChecked="@drawable/choice_selected" swipe:swipeDrawableUnchecked="@drawable/choice_unselected" swipe:swipeCloseAllItemsWhenMoveList="true" swipe:swipeMode="both" /> </LinearLayout>
代码日志版权声明:
翻译自:http://stackoverflow.com/questions/18386395/android-listview-swipe-to-action
以上所述就是小编给大家介绍的《Android列表,刷卡动作》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!
猜你喜欢:- CVPR 2020 论文大盘点:动作检测与动作分割篇
- CVPR 2020 论文大盘点:动作检测与动作分割篇
- 如何从静态图像中识别“比心”动作
- 58 部落帖子推荐系统的抬手动作
- include指令和include动作的区别
- 深入理解MPLS标签动作及应用示例
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
HTML Dog
Patrick Griffiths / New Riders Press / 2006-11-22 / USD 49.99
For readers who want to design Web pages that load quickly, are easy to update, accessible to all, work on all browsers and can be quickly adapted to different media, this comprehensive guide represen......一起来看看 《HTML Dog》 这本书的介绍吧!