Skip to content

Instantly share code, notes, and snippets.

@AnirudhaAgashe
Forked from meoyawn/EmptyRecyclerView.java
Last active June 25, 2017 03:00
Show Gist options
  • Star 9 You must be signed in to star a gist
  • Fork 4 You must be signed in to fork a gist
  • Save AnirudhaAgashe/61e523dadbaaf064b9a0 to your computer and use it in GitHub Desktop.
Save AnirudhaAgashe/61e523dadbaaf064b9a0 to your computer and use it in GitHub Desktop.
RecyclerView with provosion to add empty view like list view. Displayed when the data set is empty
import android.content.Context;
import android.support.annotation.NonNull;
import android.support.annotation.Nullable;
import android.support.v7.widget.RecyclerView;
import android.util.AttributeSet;
import android.view.View;
public class EmptyRecyclerView extends RecyclerView {
@Nullable
View emptyView;
public EmptyRecyclerView(Context context) { super(context); }
public EmptyRecyclerView(Context context, AttributeSet attrs) { super(context, attrs); }
public EmptyRecyclerView(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
}
void checkIfEmpty() {
if (emptyView != null) {
emptyView.setVisibility(getAdapter().getItemCount() > 0 ? GONE : VISIBLE);
}
}
final @NonNull AdapterDataObserver observer = new AdapterDataObserver() {
@Override public void onChanged() {
super.onChanged();
checkIfEmpty();
}
@Override
public void onItemRangeInserted(int positionStart, int itemCount) {
super.onItemRangeInserted(positionStart, itemCount);
checkIfEmpty();
}
@Override
public void onItemRangeRemoved(int positionStart, int itemCount) {
super.onItemRangeRemoved(positionStart, itemCount);
checkIfEmpty();
}
};
@Override public void setAdapter(@Nullable Adapter adapter) {
final Adapter oldAdapter = getAdapter();
if (oldAdapter != null) {
oldAdapter.unregisterAdapterDataObserver(observer);
}
super.setAdapter(adapter);
if (adapter != null) {
adapter.registerAdapterDataObserver(observer);
}
}
public void setEmptyView(@Nullable View emptyView) {
this.emptyView = emptyView;
checkIfEmpty();
}
}
Copy link

ghost commented Jun 17, 2015

Consider adding [&& getAdapter() != null]:

void checkIfEmpty() {
    if (emptyView != null && getAdapter() != null) {
        emptyView.setVisibility(getAdapter().getItemCount() > 0 ? GONE : VISIBLE);
    }
}

Without that, my app crashes.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment