滑动浏览图库
我正在创建一个应用程序,我需要在图库中滑动图像。我正在使用 Sencha Touch 来实现同样的目的。它允许我顺利地浏览图像,但我需要一个标题来记录我所在的图像的计数。例如:1/5、2/5 等。
知道我该怎么做吗???
我希望代码特别是在 javascript 和 css 中。
I am creating an applilcation where I need to swipe through images in my gallery. I am using Sencha Touch for the same. It allows me to swipe through the images smoothly but I need a header that keeps a count of which image I am in. For eg: 1/5, 2/5 and so on.
Any idea how do i do that???
I would appreciate the code being in javascript and css specifically.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 XML 布局中使用 TextView 和 Gallery,如下所示
在 Java 文件中,在
onCreate()
方法之前找到 TextView,如下所示
接下来,Gallery 如下
我认为您知道如何将 Adapter 设置为 Gallery,所以不在这里解释一下。
在 Activity 的
onCreate()
方法中,编写以下代码 上面的代码将在您滑动 Galley 时显示 Gallery Item 的位置。
当您单击图库中的项目时,上面的代码将显示图库项目的位置。
我希望你能理解这一点,如果有任何疑问,请随时问我。
Use a TextView and Gallery in your XML layout as below
In Java file, before
onCreate()
methodFind the TextView as below
Next, Gallery as below
I think you know how to set Adapter to Gallery, so not explaining that here.
In
onCreate()
method of your activity, write below codeThe above code will display the position of Gallery Item when you swipe the Galley.
The above code will display the position of Gallery Item when you click an item in the Galley.
I hope you will understand this, if any doubts feel free to ask me.
你试过这个图书馆吗
Jquery Touchwipe
它适用于 Android
Have you tried this library,
Jquery Touchwipe
It works on Android