在 eclipse 中启动后打开视图
我试图在 Eclipse ILaunchConfigurationDelegate 结束时以编程方式打开一个视图。 目前,当我尝试调用 showView() 时,出现“无效线程访问”错误。 如何从启动器打开视图?
I'm trying to have a view open programatically at the end of an eclipse ILaunchConfigurationDelegate. Currently I'm getting an "invalid thread access" error when I try to call showView(). How do I open a view from the launcher?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试像这样结束你的通话;
这会将其放在显示线程上,并应该修复您看到的错误。
Try wrapping your call like this;
This will put it on the Display thread and should fix the errors your seeing.