I stopped programming for about a half a year and yesterday I set up my Android Development Environment. The Content Assist functionality isn't working as I want it to.
Here I would expect it to autocomplete the variablename I declared above.
Here I was expecting to get all the methods I can invoke on a String. Notice the error in the bottom left, I don't undestand why I get that.
Here Content Assist actually works the way it's supposed to.
I tried it with Eclipse Helios, Indigo and Juno. No idea what the Content Assist is doing there, maybe there is even something wrong with my code? Edit: I also made a new workspace with no success.
Dude, you're not in a "code" area; you're trying to code-complete in a field area - it's expecting a type.
Try it inside a method:
public call Test {
String str_test = "hello world";
void someMethod() {
str_tes|... <-- it will complete this
}
Occam's razor - choose between: