look at this code and tell if i use Arraylist whats happen ..i want to know whats a diffrent between ArrayList and Arrayadaptor?
public class structNote {
public String title;
public String description;
public boolean done;
}
public class AdapteNote extends ArrayAdapter<structNote> {
public AdapteNote(ArrayList<structNote> array) {
super(G.context, R.layout.adaptornote, array);
}
