public class CustomImageView extends ImageView { public CustomImageView(Context context) { super(context); } public CustomImageView(Context context, AttributeSet attrs) { super(context, attrs); } public CustomImageView(Context context, AttributeSet attrs, int defStyle) { super(context, attrs, defStyle); } @Override protected void onDetachedFromWindow() { // release any resources or perform any cleanup operations here super.onDetachedFromWindow(); } }
Picasso.get().load("http://example.com/image.jpg").into(imageView);The android.widget.ImageView class is a part of the Android Framework, specifically the android.widget package.