I have a ListActivity with my customized adapter and inside each of the view, it may have some buttons, in which I need to implement OnClickListener. I need to
OnClickListener
When implementing the onClickListener, you can use v.getContext.startActivity.
onClickListener
v.getContext.startActivity
btn.setOnClickListener(new OnClickListener() { @Override public void onClick(View v) { v.getContext().startActivity(PUT_YOUR_INTENT_HERE); } });