I am extending ArrayAdapter<UrlItem>
class and have overridden the following method:
@Override
public View getView(int position, View convertView, ViewGroup parent) {
}
I observed that, this method gets called several times. I want to ask, how do you know how many times this gethod gets called to return the View? I want to know how getView()
works?