This may be an elementary question, but I just want to know: When initializing the Inflater inside the getView() method, what's the different between these lines:
convertView = inflater.inflate(resource, root);
convertView = View.inflate(context, resource, root);
Follow-up question: Which is best to use in initializing the Inflater? Thanks for any response.