Hi all,
I'm unknow using function where extend ArrayAdapter in codes below
public class MyAdapter extends ArrayAdapter<Rowlist>
{
private ArrayList<Rowlist> rowlists;
private Context context;
public MyAdapter(Context context, int resource, int
textViewResourceId,
List<Rowlist> objects) {
super(context, resource, textViewResourceId, objects);
// TODO Auto-generated constructor stub
}
}
In code, why use MyAdapter with 4 paramenter (Context, resource,
textViewResourceId and List<Rowlist>) because I,m looking
public MyAdapter(Context context, int resource, int
textViewResourceId) {
super(context, resource, textViewResourceId);
// TODO Auto-generated constructor stub
}
I'm learning programming android lesson in ListView.
Thanks for answer everybody
--
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en