An extended class with BaseAdapter will not allow me to jump from one activity to the second ::
it give me syntax error ::
holder.capture.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
intent_request = new Intent(this, SaxParser2.class);
}
Screen

change this line,
to
In your case you should have to context of the activity from which you call your base adapter class’s constructor,
using that context of activity,
then,
NOTE:
I guess SaxParser2 is a activity not a class.