Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import android.graphics.drawable.Drawable;

import android.widget.TextView;

public class Main {
    public static void addBadge(TextView tv, Drawable d) {
        Drawable[] dws = tv.getCompoundDrawables();
        dws[2] = d;
        tv.setCompoundDrawablesWithIntrinsicBounds(dws[0], dws[1], dws[2], dws[3]);
    }
}