Android-Pagination-with-RecyclerView icon indicating copy to clipboard operation
Android-Pagination-with-RecyclerView copied to clipboard

Getting Null pointer Exception

Open cr7rahul opened this issue 6 years ago • 0 comments

`public void add(MovieListItem r) { movieResults.add(r); notifyItemInserted(movieResults.size() - 1); }

public void addAll(List<MovieListItem> moveResults) {
    for (MovieListItem result : moveResults) {
        add(result);
    }
}`

on debugging i found out that in addAll method the movieResults are fetched correctly. But in add(MovieListItem) method the r values becomes null

cr7rahul avatar Sep 27 '19 07:09 cr7rahul