set View Background by sdk version - Android User Interface

Android examples for User Interface:View Background

Description

set View Background by sdk version

Demo Code

/**/*  w  w  w .  j ava2 s  .  com*/
 * Sapelli data collection platform: http://sapelli.org
 * 
 * Copyright 2012-2014 University College London - ExCiteS group
 * 
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 *     http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and 
 * limitations under the License.
 */
//package com.java2s;
import android.annotation.TargetApi;
import android.graphics.drawable.Drawable;
import android.os.Build;
import android.view.View;

public class Main {
    static public void setViewBackground(View view, Drawable background) {
        if (android.os.Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN /* = 16 */)
            setViewBackgroundDrawable16AndUp(view, background);
        else
            setViewBackgroundDrawablePre16(view, background);
    }

    @TargetApi(Build.VERSION_CODES.JELLY_BEAN)
    static private void setViewBackgroundDrawable16AndUp(View view,
            Drawable background) {
        view.setBackground(background);
    }

    @SuppressWarnings("deprecation")
    static private void setViewBackgroundDrawablePre16(View view,
            Drawable background) {
        view.setBackgroundDrawable(background);
    }
}

Related Tutorials