Eclipse content assist not completing android activity methods

72 views Asked by At

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.

no Default proposals When I start writing a method without, for example, Protected void like below image and select that method, content assist autocomplete anything.

enter image description here 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.

1

There are 1 answers

1
danny117 On BEST ANSWER

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.