Recyclerview Is Not Showing
I have Spinner, EditText and a RecyclerView in my Activity. Everything is going good but sometimes my recyclerView is not Visible till I click on EditText in my Activity. I debug m
Solution 1:
You should remove the rcycler_productlist.smoothScrollToPosition(0);
and try again.
Looks like placeOrderAdapter.notifyDataSetChanged();
and placeOrderAdapter.notifyItemInserted(productNLCModels.size());
these two statements has only one meaning, at a time you are notifying the data set and then you notify the inserted data, Instead you only need to write the placeOrderAdapter.notifyItemInserted(productNLCModels.size());
only and remove the notifyDataSetChanged();
Post a Comment for "Recyclerview Is Not Showing"