0
I was writing my codes normally when one day I realized that Eclipse (the program I’m using to make Android apps) is not completing my words, for example: I have a variable called 'Functions', when I write 'Func' and press Ctrl + Space does not show the options for me to choose.
But the strange thing is that it works outside the OnClickListener
, that is, if I write any code within the OnClickListener
the Eclipse does not complete, nor the common codes. Before I typed for and pressed Crtl + Space and he gave me suggestions as Foreach
.
I have tried to check the Java Proposals options in the Eclipse Settings, but it still doesn’t work. Why is this happening?
opens the blank window by pressing Ctrl + space or even the window appears?
– Math
The window opens and says "No Default Proposals". Outside Onclicklistener the window opens and displays the options normally.
– Jhonas Kenne Boeno
check if the variable you are trying to access is actually accessible inside the System, if possible put some code here showing exactly how to reproduce the error
– Math