I want to update the items in the list if items has been updated, but there might be no updates at all.
So my question is: if notifyDataSetChange() method is called but no changing in the adapter, will getView() method get triggered?
Updates:
Does adapter has to be used together with ListView so the getView() can be triggered after notifyDataSetChange() is called? If I manually iterate an adapter and later on call notifyDataSetChange(). Will getView() be called?