use of tk.woppo.sunday.model.SimpleWeatherModel in project SunDay by iQuick.
the class SimpleWeatherAdapter method getView.
@Override
public View getView(int position, View convertView, ViewGroup parent) {
SimpleWeatherModel model = mList.get(position);
SimpleWeatherItem item;
if (convertView == null) {
item = SimpleWeatherItem_.build(mContext);
} else {
item = (SimpleWeatherItem) convertView;
}
item.bind(model, position);
return item;
}
Aggregations