i have a relative layout and an imageView i want to set the relative layout background image through the imageView image ressource , this is the code :
ImageView iv = new ImageView(null) ;
Picasso.get().load("http://10.0.2.2:3000/uploads/"+imgtrip+".png").into(iv);
viewHolder.rltvLayout.setBackground(iv.getDrawable);
i am getting this error :
java.lang.NullPointerException: Attempt to invoke virtual method 'android.content.res.Resources android.content.Context.getResources()' on a null object reference
in this line :
ImageView iv = new ImageView(null) ;