Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
import android.content.Context;
import android.graphics.drawable.Drawable;

import android.widget.CheckBox;

public class Main {
    public static void setRightCheckBoxDrawable(Context context, int drawableId, CheckBox box) {
        Drawable drawable = context.getResources().getDrawable(drawableId); // /
        drawable.setBounds(0, 0, drawable.getMinimumWidth(), drawable.getMinimumHeight());
        box.setCompoundDrawables(null, null, drawable, null);
    }
}