public class test2 extends ListActivity {
}
eg:i want to find what are the methods in ListActivity that can be overridden ..what is the short key find this in eclipse.. how the method can be brought through eclipse intellisense that is suppose method onListItemClick with certain parameters that can be overriden in listactivity ..how can it be brought through intellisense..or how can it be automatically generated through eclipse
eg:
@Override
protected void onListItemClick(ListView l, View v, int position, long id) {
super.onListItemClick(l, v, position, id);
}
Source > Override/Implement methods
Accessible via right click, menu bar (alt+s), alt+shift+s
ykaganovich points out another way, which is faster for overriding a single members. Override/Implement allows multiple members to be overridden through a single action.