up vote 34 down vote favorite
47
share [g+] share [fb]

I was wondering if there was a way to create a ListView with rounded corners in Android...

link|improve this question

feedback

4 Answers

up vote 124 down vote accepted

Here's one way of doing it (Thanks to Android Documentation though!):

Add the following into a file (say customshape.xml) and then place it in (res/drawable/customshape.xml)

<?xml version="1.0" encoding="UTF-8"?> 
<shape xmlns:android="http://schemas.android.com/apk/res/android" 
     android:shape="rectangle"> 
     <gradient android:startColor="#SomeGradientBeginColor" android:endColor="#SomeGradientEndColor" 
            android:angle="270"/> 

    <corners android:bottomRightRadius="7dp" android:bottomLeftRadius="7dp" 
     android:topLeftRadius="7dp" android:topRightRadius="7dp"/> 
</shape> 

Thought someone else might be interested in it. Once you are done with creating this file, just set the background in one of the following ways:

Through Code: listView.setBackgroundResource(R.drawable.roundedcorner);

Through XML, just add the following attribute to the container (ex: LinearLayout):

android:background="@drawable/customshape"

Hope someone finds it useful...

link|improve this answer
2  
Thanks for the great tip. Just FYI, copy-pasting gave me a runtime exception saying, "XmlPullParserException: Binary XML file line #4<gradient> tag requires 'angle' attribute to be a multiple of 45".. Easily remedied by changing the angle to 270. – allclaws Jan 25 '10 at 16:25
Thanks for the fix... But I don't know why that could be happening.. Did you find any specific reason? – Legend Jan 26 '10 at 17:21
4  
I love you for this! – teedyay Mar 30 '10 at 17:18
@teedyay: Anytime pal :) – Legend Apr 24 '10 at 2:56
3  
It doesn't work well with selection-highlighting though: When top or bottom item is selected, it's colored background is rectangular and drawn on top of the round-cornered background. – Kris Van Bael Jul 27 '11 at 13:30
show 7 more comments
feedback

Although that did work, it took out the entire background colour as well. I was looking for a way to do just the border and just replace that XML layout code with this one and I was good to go!

<shape xmlns:android="http://schemas.android.com/apk/res/android">
    <stroke android:width="4dp" android:color="#FF00FF00" />
    <padding android:left="7dp" android:top="7dp"
            android:right="7dp" android:bottom="7dp" />
    <corners android:radius="4dp" />
</shape> 
link|improve this answer
feedback

@kris-van-bael

For those having issues with selection highlight for the top and bottom row where the background rectangle shows up on selection you need to set the selector for your listview to transparent color.

listView.setSelector(R.color.transparent);

In color.xml just add the following -

<color name="transparent">#00000000</color>
link|improve this answer
it didn't work for me. I added the following line, however, and it got rid of it: android:cacheColorHint="@android:color/transparent" – anonymous Jan 10 at 3:37
feedback

Another way I found was to mask out your layout by drawing an image over the top of the layout. It might help you. Check out Android XML rounded clipped corners

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.