How can I set a border for an ImageView and change it's colour in Android?

link|improve this question

feedback

4 Answers

up vote 87 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>
link|improve this answer
10  
And then add android:background="@drawable/yourXmlFileName" to ImageView – Mithun Apr 7 '11 at 8:02
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
1  
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 2 more comments
feedback

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"/>
link|improve this answer
2  
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
1  
Yeah! but you have a border without creating another xml file. – user609239 Jun 8 '11 at 7:16
+1 for a simple solution to images without transparency. – Chris Knight Jan 2 at 23:25
feedback

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>

link|improve this answer
feedback

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

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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