内容简介:我有一些文本列表.我想在滑动动作中显示图像(几乎像在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标签动作及应用示例
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
JavaScript
Douglas Crockford / Yahoo Press / 2008-5 / GBP 23.99
Most programming languages contain good and bad parts, but JavaScript has more than its share of the bad, having been developed and released in a hurry before it could be refined. This authoritative b......一起来看看 《JavaScript》 这本书的介绍吧!