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

How can I set a border for an ImageView and change its color in Android?

share|improve this question

5 Answers

up vote 157 down vote accepted

I set the below xml to the background of the Image View as Drawable. It works.

<?xml version="1.0" encoding="UTF-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="#FFFFFF" />
<stroke android:width="1dp" android:color="#000000" />
<padding android:left="1dp" android:top="1dp" android:right="1dp"
    android:bottom="1dp" />
</shape>
share|improve this answer
30  
And then add android:background="@drawable/yourXmlFileName" to ImageView – Mithun Apr 7 '11 at 8:02
1  
My layout in the activity is like this <LinearLayout android:layout_width="fill_parent" android:layout_height="fill_parent"> <ImageView android:id="@+id/picture" android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_gravity="center" /> </LinearLayout> The border fills the whole background where ever the picture doesn't cover, which is white is this case. Is there a way to wrap the imageView with a 1 dp border but still using this method? – Maurice Jul 22 '11 at 7:25
I can not get you properly. If you do not want to show the white background then change the <solid> color to transparent or something whatever you want. – Praveen Jul 22 '11 at 7:35
2  
The border works both both the left and right, but for top and bottom it fills the parent to the top. – Maurice Jul 22 '11 at 8:48
do you mean that you are not getting the border on top and bottom? is it? – Praveen Jul 22 '11 at 9:14
show 5 more comments

Following is the code that i used to have black border. Note that i have not used extra xml file for border.

<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/red_minus_icon"
android:background="#000000"
android:padding="1dp"/>
share|improve this answer
7  
yeah.. it looks like a border. But when you use a drawable image with tranparent background, then it will not show your image with border properly. it shows black color whereever you have the transparent. So your answer is not a best approach. – Praveen May 19 '11 at 9:09
4  
Yeah! but you have a border without creating another xml file. – user609239 Jun 8 '11 at 7:16
2  
+1 for a simple solution to images without transparency. – Chris Knight Jan 2 '12 at 23:25
2  
This doesn't work when you resize the image using android:scaleType="centerCrop". – Silox Feb 23 at 21:04
this is bad because it creates unnecessary overdraw – Jay Soyer Apr 19 at 20:13

This is an old post I know, but I thought this might possibly help someone out there.

If you want to simulate a translucent border that doesn't overlap the shape's "solid" color, then use this in your xml. Note that I don't use the "stroke" tag here at all as it seems to always overlap the actual drawn shape.

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

    <item>
        <shape android:shape="rectangle" >
            <solid android:color="#55111111" />

            <padding
                android:bottom="10dp"
                android:left="10dp"
                android:right="10dp"
                android:top="10dp" />

            <corners android:radius="5dp" />
        </shape>
    </item>
    <item>
        <shape android:shape="rectangle" >
            <padding
                android:bottom="5dp"
                android:left="5dp"
                android:right="5dp"
                android:top="5dp" />

            <solid android:color="#ff252525" />
        </shape>
    </item>
</layer-list>
share|improve this answer
Brilliant. Just what i needed. – BadLuckBrian Aug 1 '12 at 5:53
I like this too but if you make the outside edges too small, the corners are blank. It works well with anything 2dp and above. – Jack from Blisd Sep 18 '12 at 13:19
cool :) It saved my time :) THanks – Sandip Armal Patil May 10 at 14:37

I think you can find out from another stackoverflow question ImageView border

share|improve this answer

I found it so much easier to do this:

1) Edit the frame to have the content inside (with 9patch tool).

2) Place the imageview inside a linearlayout, and set the frame you want as the background of the linearlayout. As you set the frame to have the content inside itself, your ImageView will be inside the frame (right where you set the content with the 9patch tool).

share|improve this answer

protected by Praveen Apr 26 at 9:05

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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