I'm new to android. According to the code below, if onListItemClick is a super class method, then why override is not used? and if it's a subclass method, then why when i change the method name, app crashes?!
class BasicViews5Activity extends ListActivity{
//onCreate method here
public void onListItemClick(ListView parent, View v, int position, long id){
//some code here
}
}