How to add margin and not padding to compoundDrawable

245 Views Asked by At

I saw how to add padding to compoundDrawable.

But is there anyway to add margins?

    TextViewCompat.setCompoundDrawablesRelativeWithIntrinsicBounds(displayName, 0, 0, 0, 0);
2

There are 2 best solutions below

3
Vikasdeep Singh On

Setting margin is not possible for TextView

As per my knowledge there is no official API to set margin for TextView.

You can only set padding.

2
Stanislav Mukhametshin On

It is not possible. You can only create your ViewGroup and add TextView and ImageView to it. It is the simplest solution.