vote up 0 vote down star
4

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

flag

75% accept rate

2 Answers

vote up 0 vote down

Thnx buddy... it makes my application rocks

link|flag
Sure no problem :) – Legend Nov 11 at 1:04
vote up 3 vote down check

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 the layout directory inside the resources folder.

<?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="250"/> 

    <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.layout.roundedcorner);

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

android:background="@layout/customshape"

Hope someone finds it useful...

link|flag

Your Answer

Get an OpenID
or

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