如何在listview项目上创建渐变边框?

时间:2015-04-29 12:11:17

标签: android android-layout android-listview

我想要像波纹管图像一样的渐变边框: 这是listview项目的一角:

enter image description here

灰色部分是backgorud,白色是listview项目。 如何创建渐变边框效果?

谢谢!

1 个答案:

答案 0 :(得分:1)

试试这个..

<?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>