当我运行我的应用程序时,我可以通过运行来选择在我的 viewFlipper 中显示哪个 View :
viewFlipper.setDisplayedChild(1);
在 onCreate 中,我可以在 onClick() 中切换 View
viewFlipper.setDisplayedChild(0);
当我想从我的代码(不是在我的主应用程序中)切换 child 时,我遇到了以下问题!
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.
任何帮助表示赞赏。
最佳答案
仅从主应用程序线程调用 setDisplayedChild()
,而不是从后台线程调用。
关于android - 使用 ViewFlipper 切换 View ,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/4873900/