Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is it possible to draw a border around a textview?

share|improve this question

5 Answers

up vote 216 down vote accepted

You can set a shape drawable (a rectangle) as background for the view.

<TextView android:text="Some text" android:background="@drawable/back"/>

And rectangle drawable back.xml (put into res/drawable folder):

<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle" >
   <solid android:color="#ffffff" />
   <stroke android:width="1dip" android:color="#4fa5d5"/>
</shape>

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

share|improve this answer
9  
What if I just want the top border? – happyhardik Aug 1 '12 at 17:55
@YongGu has an answer that just plain works and can be modified to make a top border or any other variation by simply changing margins. I'm not sure why there's such a disparity between the accepted answer and an answer that works in so many cases. – whyoz Mar 28 at 0:31
5  
@whyoz His method adds unneeded complexity to view hierarchy. You will need two additional views (A layout container and the border view) to use his method. Thus if you have many views you need to add border to, your view tree will grow unmanagable. – Konstantin Burov Mar 28 at 15:23
1  
@whyoz yet this method might be applied via styles an themes, while YongGu's method can't be used this way. – Konstantin Burov Mar 28 at 15:25
@KonstantinBurov, that's a "good to know" +2 – whyoz Mar 29 at 17:11

The simple way is to add a view for your TextView, example for bottom border line

    <LinearLayout android:orientation="vertical"
                  android:layout_width="fill_parent"
                  android:layout_height="fill_parent">
        <TextView
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:layout_marginTop="10dp"
                android:layout_marginLeft="10dp"
                android:text="@string/title"
                android:id="@+id/title_label"
                android:gravity="center_vertical"/>
        <View
                android:layout_width="fill_parent"
                android:layout_height="0.2dp"
                android:id="@+id/separator"
                android:visibility="visible"
                android:background="@android:color/darker_gray"/>

    </LinearLayout>

For other direction border, please adjust the location of the separator view.

share|improve this answer

I was just looking at a similar answer-- it's able to be done with a Stroke and the following override:

@Override
public void draw(Canvas canvas, MapView mapView, boolean shadow) {

Paint strokePaint = new Paint();
strokePaint.setARGB(255, 0, 0, 0);
strokePaint.setTextAlign(Paint.Align.CENTER);
strokePaint.setTextSize(16);
strokePaint.setTypeface(Typeface.DEFAULT_BOLD);
strokePaint.setStyle(Paint.Style.STROKE);
strokePaint.setStrokeWidth(2);

Paint textPaint = new Paint();
textPaint.setARGB(255, 255, 255, 255);
textPaint.setTextAlign(Paint.Align.CENTER);
textPaint.setTextSize(16);
textPaint.setTypeface(Typeface.DEFAULT_BOLD);

canvas.drawText("Some Text", 100, 100, strokePaint);
canvas.drawText("Some Text", 100, 100, textPaint);

super.draw(canvas, mapView, shadow); 
}
share|improve this answer
Great! My only concern is that the stroke is ugly at the corners when I use drawRoundRect, both on phone and in the emulator. – erdomester May 15 '12 at 21:40

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

share|improve this answer
Useful, yes, but how is this better? – user1166877 Mar 13 at 10:25

Check this post on SO. The trick is to extend the textview and override the onDraw method.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.