Hello android developers, I have read documentation on getView method of BaseAdapter and what I understood is view can be reused/recycled,so should check that this view is non-null and of an appropriate type before using. In my case every time convertview is null and new view is created. Though list is populated correctly,but I would like to know when view will be recycled and when it will create new view.
Basically it is recycled when you scroll your list. When item is hidden - it can be recycled and used as new visible item. Try to add ~100 items and scroll them and check how many views really created.