创建没有鼠标监听器的幻灯片
我是 Android 新手,我想在没有任何监听器的情况下创建幻灯片,我的意思是我想打开我的应用程序并仅查看动画效果。我找不到示例或教程,有人可以帮助我吗?谢谢
I am new in android and I want to create slideshow without any listener, I mean I would like open my app and see just animation with effect. I can't find examples or tutorials, anyone could help me? Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您想在没有用户交互的情况下自动执行任何操作,则必须使用后台线程。在 Android 中,您无法从后台线程调用修改 UI 的方法。当您计划定期更新 UI 时,最好使用 AsynchTash。
如果幻灯片放映意味着一张又一张图像,那么最简单的方法是将 ImageView 添加到布局中,并且 更改其内容。
If you want to do anything automatically without user interaction, than you have to use a backgroud thread. In Android you cannot call methods modifying the UI fron a background thread. As you plan on periodically updating the UI, you will be best off with AsynchTash.
If slide show means one image after another, than the easiest way to do this will be to add an ImageView to the layout, and change it's content.
如果您调用活动,您可以在扩展线程的内部类中使用布局充气器。
}
if you call a activity, you can use layout inflator in inner class which extends thread.
}