I want to make a custom getItem method in my custom adapter class. However, when I replace the default getItem with the custom one, I get an error that tells me tht I have to implement the default getItem method because I extend BaseAdapter. When I have both of them in there, it is still just returning null when I use it in my activity.
public ImageView getItem(int rowNum, int columnNum)
{
return gridContent[rowNum][columnNum];
}
public Object getItem(int i)
{
return null;
}