我想要像波纹管图像一样的渐变边框: 这是listview项目的一角:
灰色部分是backgorud,白色是listview项目。 如何创建渐变边框效果?
谢谢!
答案 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>