Answers for "set drawable in textview programmatically android"

1

textview set drawable right programmatically

TextView textView = (TextView) findViewById(R.id.myTxtView);
textView.setCompoundDrawablesWithIntrinsicBounds(R.drawable.icon, 0, 0, 0);
Posted by: Guest on May-18-2021
0

android textview drawable tint programmatically

private void setTextViewDrawableColor(TextView textView, int color) {
        for (Drawable drawable : textView.getCompoundDrawables()) {
            if (drawable != null) {
                drawable.setColorFilter(new PorterDuffColorFilter(ContextCompat.getColor(textView.getContext(), color), PorterDuff.Mode.SRC_IN));
            }
        }
    }
Posted by: Guest on July-31-2020

Code answers related to "set drawable in textview programmatically android"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language