Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//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));
    }
}