When I refill the adapter of BrowseFragmnet and the header column is not showing, The items are moving to the right, causing an empty space between the Header column and the RowsFragment as the following image. How can I fix this issue?
This is how I am updating the adapter as an example:
adapter.clear();
...
adapter.add(new ListRow(new IconHeaderItem(0,category,featureCat.Icon), fragmentAdapter));
...
if(adapter.size()>0)
adapter.notifyArrayItemRangeChanged(0,(adapter.size()-1));