I have 3 Fragment in my app that contains RecyclerView.
and when I click on first option result is crash!
I have 3 Fragment in my app that contains RecyclerView.
and when I click on first option result is crash!
Your log shows you have NPE
at 72 row. In the row the only cause of NPE is your call G.context
. Your context is null.
You can obtain valid context by call view.getContext()
That's it.