My Activity consists of GridView which holds 40+ elements. After starting activity user could see maximum 15 items (3 rows, 5 items in each row). I wrote in getView() body to pa
The response on that link if quite clear I think
There is absolutely no guarantee on the number of times getView() will be invoked for any given position
Now this remark also implies you shouldn't use wrap_content
usually occurs with lists and grids that have a height set to wrap_content
But that does not mean it would not happen for other situations. The bug was closed as "WorkingAsIntended", so I don't think you can do too much. It's just something that can happen.