android 自定义shape实现圆角颜色渐变
要实现圆角颜色渐变,可以使用Android的shape资源文件和GradientDrawable类来实现。
首先,创建一个shape资源文件(例如shape_gradient.xml):
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<corners android:radius="20dp" />
<gradient
android:startColor="#FF0000"
android:endColor="#00FF00"
android:angle="45" />
</shape>
上面的代码定义了一个圆角为20dp的shape,同时定义了一个从红色到绿色的线性渐变。
然后,在布局文件中使用这个shape资源作为背景:
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/shape_gradient" />
这样,就可以实现圆角颜色渐变的效果了
原文地址: https://www.cveoy.top/t/topic/iRFE 著作权归作者所有。请勿转载和采集!