I\'m trying to use picasso library to be able to load url to imageView, but I\'m not able to get the context to use the picasso library correctly.
context
First globally declare
Context mContext;
pass context with the constructor, by modifying it.
public FeedAdapter(List myDataset, Context context) { mDataset = myDataset; this.mContext = context; }
then use the mContext whereever you need it
mContext