I want to start a new activity from this base adapter.
public class EfficientAdapter extends BaseAdapter { private Activity activity; private ArrayList
also you can do like, Here mContext is Your BaseAdpter Context Object
mContext
BaseAdpter
Context
Intent ieventreport = new Intent(mContext,Your.class); mContext.startActivity(ieventreport);
change your Constructer like, initialise
public EfficientAdapter(Context context, ArrayList d){ }