you can have a
public class BaseActivity extends Activity
and then
public class SomeActivity extends BaseActivity
you can have methods in your base activity for eg. you can have a show toast method
protected void showToast(String message){
Toast.makeText(this, message, Toast.LENGTH_LONG).show();
}
which can be called in every activity that extends base activity .
so if youve already extended a listActivity
you may need to rethink . Probably if you show me exactly what youre looking for i might be able to see what exactly are you looking for.
And you dont need to extend it to list activity for a list you can see various tutorials.
go to this List View Tutorial and you can find what you need