D
Deleted User
Guest
I've created a class called InboxAdapter that extends ArrayAdapter
I'm attempting to override the getView(int, View, ViewGroup) method
but I get the following complaint from Eclipse:
It says the quick fix is to remove the @Override. Why won't it let me do this? Is getView no longer a method in ArrayAdapter? (API 2.1)
Thanks for your help
Code:
private class InboxAdapter extends ArrayAdapter<MessageSummary> {
Code:
@Override
public View getView(int position, View convertView, ViewGroup parent) {
The method getView(int, View, ViewGroup) of type InboxAdapter must override a superclass method
It says the quick fix is to remove the @Override. Why won't it let me do this? Is getView no longer a method in ArrayAdapter? (API 2.1)
Thanks for your help