I want to pass variable from activity to adapter.
My adapter looks like this
public SampleAdapter(Activity context, ArrayList da
Simply add the values to the constructor.
public SimpleAdapter(Activity context, ArrayList data, String mystring, int myInt){
//use datas here
}
And use it like
myAdapter = new SimpleAdapter(this, data, myString, myInt);
Obiouvsly you can set all the datas you want, mine were some examples.
In your case you simply need to add the arrayList to the constructor.
myAdapter = new SimpleAdapter(this, myArrayList);