生成自定义视图翻转器
是否可以生成一个视图翻转器,其中一个视图显示 1 秒,另一个视图显示 3 秒,另一个视图显示 9 秒,...?
Is it possible to generate a viewflipper, which shows a view for 1 second and the other view for 3 seconds and the other for 9, ...?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
实现此目的的一种方法是使用
Timer
在给定时间过后调用 ViewFlipper 的showNext()
方法。另外,您还可以设置自动翻转并通过setFlipInterval
。One way to accomplish this to use a
Timer
that calls ViewFlipper'sshowNext()
method after the given time has passed. Also, you can set up automatic flipping and set the interval manually throughsetFlipInterval
.