I was wondering if there was a way to create a ListView with rounded corners in Android...
|
feedback
|
|
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)
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):
Hope someone finds it useful... | |||||||||||||||||
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!
| |||
|
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.
In color.xml just add the following -
| |||
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 | |||
|
feedback
|