Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a TextView and I'd like to add a black border along its top and bottom borders. I tried adding android:drawableTop and android:drawableBottom to the TextView, but that only caused the entire view to become black.

<TextView
    android:background="@android:color/green"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:drawableTop="@android:color/black"
    android:drawableBottom="@android:color/black"
    android:text="la la la" />

Is there a way to easily add a top and bottom border to a View (in particular, a TextView) in Android?

share|improve this question

8 Answers

up vote 114 down vote accepted

In android 2.2 you could do the following.

Create an xml drawable such as /res/drawable/textlines.xml and assign this as a TextView's background property.

<TextView
android:text="My text with lines above and below"
android:background="@drawable/textlines"
/>

/res/drawable/textlines.xml

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
    <item>
      <shape 
        android:shape="rectangle">
            <stroke android:width="1dp" android:color="#FF000000" />
            <solid android:color="#FFDDDDDD" />

        </shape>
   </item>

   <item android:top="1dp" android:bottom="1dp"> 
      <shape 
        android:shape="rectangle">
            <stroke android:width="1dp" android:color="#FFDDDDDD" />
            <solid android:color="#00000000" />
        </shape>
   </item>

</layer-list>

The down side to this is that you have to specify an opaque background colour, as tranparencies wont work. (At least i thought they did but i was mistaken). In the above example you can see that the solid colour of the first shape #FFdddddd is copied in the 2nd shapes stroke colour.

share|improve this answer
8  
Also see this solution, which also works for TextViews, if you want a border all around: stackoverflow.com/questions/3263611/… – emmby Dec 9 '10 at 20:09
6  
Try using android:color="@null" to avoid opaque background problem. – Matt Briançon Jul 27 '11 at 11:51
@emmby : when testing this code on tablet , it takes time to render on screen, after 1 sec borders get displayed when I scroll – Chetan Apr 3 '12 at 11:40

There is no built-in "border" concept in Android that I can think of. You can emulate one through layouts, such as:

  • Wrap the TextView in a LinearLayout and add a plain View above and below it, with the Views having the desired android:background color and an appropriate android:layout_height (e.g., 1px, 1dip).
  • Wrap the TextView in a LinearLayout and add ImageView widgets above and below with your desired border images.
  • Wrap the TextView in a RelativeLayout, add in a plain View (with proper background & height) anchored to the top, another plain View anchored to the bottom, and your TextView anchored to the top and bottom. This takes advantage of RelativeLayout's z-axis support, so the border will be inside the space taken up by the TextView, rather than being outside the TextView as in the first two approaches.
  • Give the TextView a nine-patch PNG file as a background that has your borders. This is simplest from the XML standpoint, but you have to craft an appropriate nine-patch image.
share|improve this answer
5  
Thanks commonsware. That's a good answer. I've used 9-patches and linear/relative layouts in the past, but was hoping that the platform might have a simpler and more performant solution. – emmby Oct 22 '09 at 20:30
I prefer the 9-patch solution, and since I seem to need them a lot I have created a small tool for creating 9-patch images with borders: github.com/emidander/create-bordered-9-patch – emidander Apr 5 at 19:40

I've used a trick so that the border is displayed outside the container. With this trick only a line is drawn so the background will be shown of the underlying view.

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
    <item
        android:bottom="1dp"
        android:left="-2dp"
        android:right="-2dp"
        android:top="-2dp">
        <shape android:shape="rectangle" >
            <stroke
                android:width="1dp"
                android:color="#FF000000" />

            <solid android:color="#00FFFFFF" />
                  <padding android:left="10dp"
            android:right="10dp"
            android:top="10dp"
            android:bottom="10dp"
            ></padding>
        </shape>
    </item>

</layer-list>
share|improve this answer
1  
really nice trick! thanks man :) – Olexandr May 31 '12 at 16:15
2  
Exactly what I'm looking for, thanks a lot! :) – Julia Hexen Nov 20 '12 at 11:03
2  
Simple and tricky. Should be top answer. – Zsolt Safrany Nov 23 '12 at 15:27
This worked great for me, with a few tweaks to make the line a bit thinner. – jlbruno Apr 19 at 18:30
Very nice trick, although it could be nicer if we don't have to trick the computer in order to get things done. – Tran Son Hai May 17 at 2:56

Option 1: Shape Drawable

This is the simplest option if you want a border around a layout or view in which you can set the background. Create an XML file in the drawable folder that looks something like this:

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle" >

    <solid android:color="#8fff93" />

    <stroke
        android:width="1px"
        android:color="#000" />

</shape>

You can remove the solid if you don't want a fill. The set background="@drawable/your_shape_drawable" on your layout/view.

Option 2: Background View

Here's a little trick I've used in a RelativeLayout. Basically you have a black square under the view you want to give a border, and then give that view some padding (not margin!) so the black square shows through at the edges.

Obviously this only works properly if the view doesn't have any transparent areas. If it does I would recommend you write a custom BorderView which only draws the border - it should only be a few dozen lines of code.

<View
    android:id="@+id/border"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignBottom="@+id/image"
    android:layout_alignLeft="@+id/image"
    android:layout_alignRight="@+id/image"
    android:layout_alignTop="@+id/main_image"
    android:background="#000" />

<ImageView
    android:id="@+id/image"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_...
    android:padding="1px"
    android:src="@drawable/..." />

If you're wondering, it does work with adjustViewBounds=true. However, it doesn't work if you want to have a background in an entire RelativeLayout, because there is a bug that stops you filling a RelativeLayout with a View. In that case I'd recommend the Shape drawable.

Option 3: 9-patch

A final option is to use a 9-patch drawable like this one:

You can use it on any view where you can set android:background="@drawable/...". And yes it does need to be 6x6 - I tried 5x5 and it didn't work.

The disadvantage of this method is you can't change the colours very easily, but if you want fancy borders (e.g. only a border at the top and bottom, as in this question) then you may not be able to do them with the Shape drawable, which isn't very powerful.

Option 4: Extra views

I forgot to mention this really simple option if you only want borders above and below your view. You can put your view in a vertical LinearLayout (if it isn't already) and then add empty Views above and below it like this:

<View android:background="#000# android:layout_width="match_parent" android:layout_height="1px"/>
share|improve this answer
1  
9 patch and the shape drawable are ok, but i would recommend against adding views or imageviews to solve such a problem. The reason being is that you should be removing as many such <elements> from your layouts to improve layout redrawing and animation. I would strip these out right away and implement some similar to option 1 or 2. – Emile Nov 6 '12 at 19:55
1  
@Emile That's true, but if you're using a custom ListView that doesn't support dividers a simple View is fine. The performance impact is next to nil, especially if you're sure to keep your layout depth down. It also circumvents bugs with ListView dividers across devices (I've seen some devices that ignore this property). – Tom Jan 14 at 19:56
You can also use the efficient viewholder pattern with listviews to ensure you reduce the number of calls to findViewByID which is often the cause of poor list performance. – Emile Jan 15 at 16:55

You can also wrap the view in a FrameLayout, then set the frame's background color and padding to what you want; however, the textview, by default has a 'transparent' background, so you'd need to change the textview's background color too.

share|improve this answer

First make a xml file with contents shown below and name it border.xml and place it inside the layout folder inside the res directory

<?xml version="1.0" encoding="UTF-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
    <stroke android:width="1dp" android:color="#0000" />
    <padding android:left="0dp" android:top="1dp" android:right="0dp"
        android:bottom="1dp" />
</shape>

After that inside the code use

TextView tv = (TextView)findElementById(R.id.yourTextView);
tv.setBackgroundResource(R.layout.border);

This will make a black line on top and bottom of the TextView.

Thanks.

share|improve this answer
1  
doesn't works for button – Dmitry Zaitsev May 20 '12 at 12:09
Yes, It will Work, I have checked. Button button= (Button) findViewById(R.id.button); button.setBackgroundResource(R.layout.border); – Nikhil Dinesh May 21 '12 at 9:09
I have used black color in the above xml file, your background color might be black, try by using some other color. It will definitely work <?xml version="1.0" encoding="UTF-8"?> <shape xmlns:android="schemas.android.com/apk/res/android">; <solid android:color="#474848" /> <stroke android:width="1dp" android:color="#ffff00" /> <padding android:left="1dp" android:top="1dp" android:right="1dp" android:bottom="1dp" /> </shape> – Nikhil Dinesh May 21 '12 at 9:50

Try wrapping the image with a linearlayout, and set it's background to the border color you want around the text. Then set the padding on the textview to be the thickness you want for your border.

share|improve this answer

You can also use a 9-path to do your job. Create it so that colored pixel do not multiply in height but only the transparent pixel.

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.