Android:如何实现在屏幕上仅显示 1 天的日历应用程序
我想要一个简单的应用程序来显示当前日期。假设现在应用程序显示的是FEB 10。现在,当我向右滑动时,它将显示FEB 11。每次我向右滑动,显示的日期都会增加1。如果我向左滑动它,会减少1天。
实现这一点的最佳方法是什么?您对此有何建议?日期之间的过渡应模仿图库视图。
谢谢!
I want to have a simple app that display the current date. Say for now, the display of the app is FEB 10. Now, when I swipe to the right, it will display FEB 11. Every time I swipe to the right, the day displayed increase by 1. If I swipe it to the left, it will decrease by 1 day.
What's the best way to implement this? What views do you suggest in implementing this? The transition between the days should mimic the Gallery view.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通过创建自己的自定义视图来实现 FlingListener,或者使用图像并保留数天的计数器并使用 viewflipper 进行翻转。
Either implement FlingListener by creating your own custom view, or use images and keep a counter for days and flip using viewflipper.