how to add border to a text in textview android

前端 未结 4 1087
一整个雨季
一整个雨季 2020-12-31 04:32

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

4条回答
  •  囚心锁ツ
    2020-12-31 05:03

    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.

提交回复
热议问题