hi I am new to eclipse…
I was trying to do
private Button.OnClickListener btnTestOnClick = new Button.OnClickListener()
and after I type “private Button.” there is no content assist…
Is this normal so I have to type OnClickListener or other cases everytime or is there a better way to do this?
The
OnClickListeneris an inner interface ofandroid.widget.Viewand shows in the content assist if you start with that class. Inherited inner classes or interfaces are not shown. I believe this is a known bug but can’t find a reference yet.