clear Drawable from TextView - Android User Interface

Android examples for User Interface:TextView

Description

clear Drawable from TextView

Demo Code


//package com.java2s;

import android.widget.TextView;

public class Main {
    public static void clearDrawable(TextView view) {
        view.setCompoundDrawables(null, null, null, null);
    }/*ww  w  . j a  v  a 2s.c o  m*/
}

Related Tutorials