Java tutorial
//package com.java2s; //License from project: Apache License import android.graphics.drawable.Drawable; import android.os.Build; import android.view.View; public class Main { @SuppressWarnings("deprecation") public static void setBackground(View view, Drawable drawable) { if (view != null) { // android4.1 if (Build.VERSION.SDK_INT < 16) { view.setBackgroundDrawable(drawable); } else { view.setBackground(drawable); } } } }