-
Notifications
You must be signed in to change notification settings - Fork 10
Empty RecyclerView Layout
Prashant Solanki edited this page Jan 4, 2016
·
3 revisions
Before enabling Auto Empty RecyclerView Layout do set up your RecyclerView by following Alternate Layout Support
- Enable Auto Empty RecyclerView Layout Handling.
adapter.setAutoEmptyLayoutHandling(true);
- Set Empty RecyclerView Layout.
adapter.setEmptyView(emptyView or emptyLayoutId);
- Explicitly show Empty Layout.
adapter.shwowEmptyLayout()
- Hide Layout
adapter.hideAlternateLayout();