android中如何实现gallery和listview上下一起滚动 类似于京东商城客户端首页的那种效果 非常感谢
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了android中如何实现gallery和listview上下一起滚动 类似于京东商城客户端首页的那种效果 非常感谢相关的知识,希望对你有一定的参考价值。
参考技术A 我也正在找这个问题,你找个跟我说一下,我找到也跟你说一下如何仅过滤 android Gallery 中的图像和视频?
【中文标题】如何仅过滤 android Gallery 中的图像和视频?【英文标题】:How can I filter only images and videos in the android Gallery? 【发布时间】:2012-01-20 21:57:25 【问题描述】:如何仅过滤 android 图库中的图像和视频?
例如:
intent.setType("image/*"); //returns only images
intent.setType("video/*"); //returns only videos
intent.setType("*/*"); //returns all videos,images, audios,contacts,etc..
我只想要图片和视频。我怎样才能做到这一点?
【问题讨论】:
java2s.com/Open-Source/Android/android-platform-apps/Gallery/… 【参考方案1】:intent.setType("video/*, images/*");
【讨论】:
我什至尝试过,但并非所有设备都支持它,例如。在 Galaxy Ace 中,它说没有找到数据,在 HTC 中它只显示图像。以上是关于android中如何实现gallery和listview上下一起滚动 类似于京东商城客户端首页的那种效果 非常感谢的主要内容,如果未能解决你的问题,请参考以下文章
Android中Gallery和ImageSwitcher同步自动(滚动)播放图片库
如何在android的Gridview中实现Image Gallery?