Eclipse 自动建议列表非常慢
通过自动建议,我的意思是当我写东西时弹出的智能感知。我的问题是,如果我在输入 .
后编写类似 btnMyButton.
的内容,我需要等待几秒钟,直到 eclipse 用按钮事件填充列表。我正在使用 Eclipse 开发 Android 应用程序。
这可以加快吗?我有一个四核处理器和 4 GB 内存。 Eclipse 的其余部分工作正常。
By auto suggest, I mean that intellisense that pops up when I write something. My problem is that if I write something like btnMyButton.
after typing .
I get to wait a few seconds until eclipse populates the list with events for button. I am using Eclipse to develop Android applications.
Can this be sped up? I have a Quad Core processor and 4 GB of ram. The rest of Eclipse is working fine.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
我也遇到过这个问题。我在这里找到了答案:
https://groups.google.com/group /android-developers/browse_thread/thread/85dc1aae3bafff5e
总结:
Window >偏好设置 -->爪哇>编辑>内容辅助>高级
I was also experiencing this problem. I found my answer here:
https://groups.google.com/group/android-developers/browse_thread/thread/85dc1aae3bafff5e
In summary:
Window > Preferences --> Java > Editor > Content Assist > Advanced
当我将延迟更改为 1(毫秒)时,它解决了 Eclipse for C++ 中的自动完成问题。现在速度非常快:
When I changed delay to 1 (ms) it solved autocompletion problem in Eclipse for C++.it is now very fast:
我取消选中“窗口”>“填充方法参数并显示猜测的参数”偏好设置 -->爪哇>编辑>内容辅助
这提高了 Eclipse 中的内容辅助速度
I unchecked "Fill method arguments and show guessed arguments" under Window > Preferences --> Java > Editor > Content Assist
This improved the content assist speed in my Eclipse
取消选中除
Window > 中的
。API Tools Proposals
和Java Proposals
之外的所有内容。偏好设置 -->爪哇>编辑>内容辅助请参阅下面的屏幕截图。
Uncheck all, other than
API Tools Proposals
andJava Proposals
inWindow > Preferences --> Java > Editor > Content Assist
.Refer to the below screenshot.
您可以添加禁用自动激活
窗口>偏好设置 -->爪哇>编辑>内容辅助
这样您就可以在需要时通过 Ctrl + Space 激活它
you can add disable auto activation in
Window > Preferences --> Java > Editor > Content Assist
This way you can activate it when you need it by Ctrl + Space
当你想查看菜单时,尝试按 CTRL + 空格键,还是很慢吗?
Try clicking CTRL + Space when you want to see the menu is it still slow?