I read many posts about content assist by my problem is special. Content assist works well in many cases, but when I start writing a method
like below image does not complete it.
When I start writing a method
without, for example, Protected void
like below image and select that method, content assist autocomplete anything.
completed code by content assist:
@Override
protected void onResume() {
// TODO Auto-generated method stub
super.onResume();
}
Don't say it is normal because I saw my teacher starts with Protected void
and content assist completed it.
In Android Studio Ctrl + O to override and you select the method to override and presto bang AS fills in the method including a call through the super object.