Recyclerview Onclicklistener Doesn't Work
I can't pass intent by clicking reckclerview onclickListener from adapter. When I clicked any item then application is stopped. Here is the Log Cat.... Process: com.example.ilias.m
Solution 1:
try editing this (paste this.context = context;
):
public VivzAdapter(Context context, List<Information> data){
this.context = context;
infater=LayoutInflater.from(context);
this.data=data;
}
Post a Comment for "Recyclerview Onclicklistener Doesn't Work"