Is there a shortcut to overriding methods in the Android Framework class in Eclipse?

Currently overriding a method, for example. Activities in the Android Eclipse project:

Source> Override / Implementation Methods> Scrolling List, check the box, click OK.

Is there a shortcut for this with a smaller step?

+6
source share
4 answers

alt - shift - s v

All keyboard shortcuts can be found in the configuration.

+8
source

You should use Alt + Shift + S, V

+2
source

You can also start typing the name of the method and the completion ( Ctrl - Space ) will also give you a function that you can override.

+1
source

In my case

  • Settings> Java> Editor> Content Assist> Uncheck "Enable automatic activation"
  • Settings> General> Content Assistant> Linking with Ctrl + Space (Set Key Binding) or Option + Space
  • enter "on" then Ctrl + Space

Step 3 will show the methods that you can override.

Disabling automatic activation will increase the performance of eclipse, and the content binding key will be much faster and more useful.

0
source

All Articles