0

Is it possible to add an icon to a TextView as such: enter image description here

All the things I have tried position the icon outside the TextView field. (such as adding a ImageView or adding drawableEnd to the TextView)

Thanks

Anna B
  • 33
  • 7
  • 3
    Yes, you can do it using `SpannableString`, check my answer to ta similar question here: https://stackoverflow.com/questions/68068263/android-using-icon-in-text-of-textview/68069153#68069153 – Alpha 1 Aug 29 '22 at 15:51
  • Thanks! That works, is it possible to add a clickListener to the icon? – Anna B Aug 30 '22 at 11:19

1 Answers1

2

yes, you can insert image in textview

android:drawableEnd="@drawable/img_example 

for right side of textview and

android:drawableStart="@drawable/img_example" 

for left side of textview. before you have to insert an image or icon in the folder drawable

abdo Salm
  • 1,678
  • 4
  • 12
  • 22