During my work I faced a serious problem: flash effect when refreshing items of the BrowseFragment’s rows.
source: https://developer.android.com/training/tv/playback/browse.html
Before talking about the solution of the problem, Let’s introduce the BrowseFragment. The BrowseFragment is a fragment for creating media catalog. In the media catalog, we can browse categories from the left, and select contents of the selected category on the right. The media catalog is composed of a RowsFragment and a HeadersFragment. A BrowseFragment renders the elements of its ObjectAdapter as a set of rows in a vertical list.
media catalog
Now let’s imagine we want to refresh every 5 seconds the data of the RowsFragment with a background task.How can we do that ?
The BrowseFragment use an ArrayObjectAdapter to display data. We just need to:1. clear the items of the adapter (clear)2. add new items to the adapter(addAll) Problem: the flash effect
Every time there is a refresh, the fragment blinks. The flash effect is caused by the adapter notifying the UI for each operation on the items. As we can see the method clear() and addAll() have a notify method of ArrayObjectAdapter have a notify method:
public void clear() {int itemCount = mItems.size();if (itemCount == 0) {return;}mItems.clear();notifyItemRangeRemoved(0, itemCount); //notifies UI}
public void addAll(int index, Collection items) {int itemsCount = items.size();if (itemsCount == 0) {return;}mItems.addAll(index, items);notifyItemRangeInserted(index, itemsCount);//notifies UI}
we can create our own adapter and choose when and how to notify the changes on the items.
I created a custom ObjectAdapter with a new replaceAll() method.
public void replaceAll(Collection items){int itemsCount = items.size();if (itemsCount == 0){return;}** mItems.clear();mItems.addAll(index, items);notifyItemRangeChanged(0, itemsCount);**}
The full class is here:
Creating a Catalog Browser | Android Developers_A media app that runs on a TV needs to allow users to browse its content offerings, make a selection, and start playing…_developer.android.com
N E X T → Documenting My Android Adventure
Before you go… If you enjoyed this post, you will love to subscribe to my newsletter. Get my cheat sheet: “Android Studio keyboard shortcuts cheat sheet”.