I found picassa allows to load a resource on an image view, e.j: Picasso.with(getContext()).load(R.drawable.ic_car).into(imageView);
What is the advantage of using it rather than just imageView.setResourceId(R.drawable.ic_car)?
Is there an advantage?
Thanks.