Java tutorial
//package com.java2s; import android.widget.ImageView; public class Main { @SuppressWarnings("deprecation") private static void setDrawableToImageViewBeforeLollipop(ImageView imageView, int drawableId) { imageView.setImageDrawable(imageView.getContext().getResources().getDrawable(drawableId)); } }