public class test2 extends ListActivity { }
for example: I want to find which methods in ListActivity can be overridden. What is the short key, find it in eclipse .. how the method can be obtained through eclipse intellisense, which suggested the onListItemClick method with specific parameters that can be re-evaluated in the activity list. How it can be caused by intellisense ... or how it can be automatically generated via eclipse for example:
@Override protected void onListItemClick(ListView l, View v, int position, long id) { super.onListItemClick(l, v, position, id); }
source share