Is it possible to draw a border around a textview?
|
|
|
You can set a shape drawable (a rectangle) as background for the view.
And rectangle drawable back.xml (put into res/drawable folder):
You can use #00000000 for the solid color to have a transparent background. You can also use padding to separate the text from the border. for more information see: http://developer.android.com/guide/topics/resources/drawable-resource.html |
|||||||||||||||||
|
|
The simple way is to add a view for your TextView, example for bottom border line
For other direction border, please adjust the location of the separator view. |
||||
|
|
|
I was just looking at a similar answer-- it's able to be done with a Stroke and the following override:
|
||||
|
|
I know this is old but I found this question when I was searching for how to put a border around a TextView. I found a better way to do it than the answers posted here though. Use a nine-patch image for the background. It's pretty simple, the SDK comes with a tool to make the 9-patch image, and it involves absolutely no coding. -edit- forgot the think... here it is: http://developer.android.com/guide/topics/graphics/2d-graphics.html#nine-patch |
||||
|
|
|
Check this post on SO. The trick is to extend the textview and override the |
|||
|
|