使用 ViewFlipper 切换视图

发布于 2024-10-15 15:42:17 字数 485 浏览 5 评论 0原文

当我运行我的应用程序时,我可以通过运行以下命令来选择要在我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

云仙小弟 2024-10-22 15:42:17

仅从主应用程序线程调用 setDisplayedChild(),而不是从后台线程。

Only call setDisplayedChild() from the main application thread, not from a background thread.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文