CustomAdapter For Object Isnt Working
I have a model class. Now from my activity i want to set the values in model class & show them in gridview using my custom adapter. After that i need to store the object in a v
Solution 1:
public class myAdapter
{
does not extend anything
It should be
public class myAdapter extends BaseAdapter //orArrayAdapter
{
If you still have a problem post the stacktrace for further help
Post a Comment for "CustomAdapter For Object Isnt Working"