Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
import android.annotation.SuppressLint;
import android.graphics.drawable.Drawable;
import android.view.View;

public class Main {
    @SuppressLint("NewApi")
    @SuppressWarnings("deprecation")
    public static void setViewBackground(View view, Drawable background) {
        if (android.os.Build.VERSION.SDK_INT <= 16) {
            view.setBackgroundDrawable(background);
        } else {
            view.setBackground(background);
        }
    }
}