Java tutorial
//package com.java2s; import android.graphics.drawable.Drawable; import android.os.Build; import android.view.View; public class Main { @SuppressWarnings("deprecation") public static void setDrawable(View v, Drawable d) { if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN) { v.setBackground(d); } else { v.setBackgroundDrawable(d); } } }