使用 ViewFlipper 切换视图
当我运行我的应用程序时,我可以通过运行以下命令来选择要在我的 viewFlipper 中显示哪个视图:
viewFlipper.setDisplayedChild(1);
在 onCreate 中,我可以在 onClick() 中切换视图
viewFlipper.setDisplayedChild(0);
当我想从我的代码(不在我的主应用程序中)切换子项时,我得到以下问题!
02-02 12:17:08.620: ERROR/AndroidRuntime(1005): android.view.ViewRoot$CalledFromWrongThreadException: Only the original thread that created a view hierarchy can touch its views.
任何帮助表示赞赏。
When I rund my application I can choose which view to show in my viewFlipper by running:
viewFlipper.setDisplayedChild(1);
in onCreate, I can switch the view in my onClick()
viewFlipper.setDisplayedChild(0);
When I want to switch child from my code (not in my main app) i get the following problem!
02-02 12:17:08.620: ERROR/AndroidRuntime(1005): android.view.ViewRoot$CalledFromWrongThreadException: Only the original thread that created a view hierarchy can touch its views.
Any help is appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
仅从主应用程序线程调用
setDisplayedChild()
,而不是从后台线程。Only call
setDisplayedChild()
from the main application thread, not from a background thread.