You get NPE on add_to_meal_button = itemView.findViewById(R.id.add_meal_button);
as add_meal_button
id is not included in your layout
To solve this, change the id of your item layout button from add_to_meal_button
to add_meal_button
CLICK HERE to find out more related problems solutions.