In Android, how can you add a border around a text? I want a border around the text in TextView not around the TextView.Is there any way to do it in? If so, please
Android does not have such feature originally. A few months ago, I had to develop a similar feature, and I used some trick. In that case I used the shadow
attribute. In your case on TextView.onDraw()
call super()
two times. Set the typeface to bold and set the color to border color and call one time, and set normal and call second time. That will work.