Skip to content

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();

Clone this wiki locally