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.

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

share|improve this question

6 Answers

up vote 251 down vote accepted

Here is 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> 

Once you are done with creating this file, just set the background in one of the following ways:

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

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

android:background="@drawable/customshape"

Hope someone finds it useful...

share|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
9  
I love you for this! – teedyay Mar 30 '10 at 17:18
1  
same as allclaws, angle should be multiple of 45 : "XmlPullParserException: Binary XML file line #4<gradient> tag requires 'angle' attribute to be a multiple of 45" – Youssef Sep 2 '10 at 9:27
14  
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 9 more comments

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> 
share|improve this answer
Also check out this answer – Thomas Mar 21 '12 at 11:57

@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>
share|improve this answer
5  
it didn't work for me. I added the following line, however, and it got rid of it: android:cacheColorHint="@android:color/transparent" – cesar Jan 10 '12 at 3:37
1  
This definitely fixed the selection issue for me - thanks! You can also use android.R.color.transparent for the Selector color instead of creating your own. – greg7gkb May 23 '12 at 4:20
Instead of doing it programatically, add this to your ListView in the XML layout to hide selection color: android:listSelector="#00000000" – Elad Nava Sep 14 '12 at 18:21

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

share|improve this answer

actually, i think the best solution is described on this link:

http://blog.synyx.de/2011/11/android-listview-with-rounded-corners/

in short, it uses a different background for the top, middle and bottom items, so that the top and bottom ones would be rounded.

share|improve this answer

you must but it inside linerlayout first

<LinearLayout   
 android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginRight="2dp"
    android:layout_marginLeft="2dp"
    android:background="@drawable/listviewborders" >
   <listview
        android:layout_margin="5dp"   <!-- this is very importent -->
        android:layout_width="wrap_content"
        android:layout_height="63dp"
  </ListLiew>
</LinearLayout>
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.