tags:

views:

26

answers:

2

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.

A: 

Try clicking CTRL + Space when you want to see the menu is it still slow?

Chris
It is slow in the case of controls, like buttons, imageviews etc. If I have a class and i type Classname.getSOmeMember() the menu is very fast.
Alin
I see Eclipse being slower in Windows 7 and faster on Windows XP
Alin
A: 

I was also experiencing this problem. I found my answer here

https://groups.google.com/group/android-developers/browse_thread/thread/85dc1aae3bafff5e

In summary - "turn off JAX-WS Proposals in Content Assist

Window > Preferences --> Java > Editor > Content Assist > Advanced "

davehale23