I have been trying for a month doing a lot of research to translate this to Fragment since I need it for my navigation Menu. Basically I\'m creating an app. I\'m using my MainAc
Fix simple by removing null:
Intent intent = new Intent(Events.this, AddEvent.class);
The problem is caused by this line:
Intent intent = new Intent(Events.this, AddEvent.class, null);
You should instantiate your Intent with one of the available Public constructors.
In this case, I would suggest using new Intent(view.getContext(), AddEvent.class);