我正在通过测试例子。对于一些图像背景,他们使用渐变, 代码是这样的
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<gradient
android:startColor="#ff0000"
android:centerColor="#00ff00"
android:endColor="#0000ff"
android:angle="180"/>
<corners android:radius="5dp" />
</shape>
在上面的 xml 中,我没有得到 angle
属性。但是当我稍微改变 angle
的值时,图案就会倾斜。有人能解释一下它到底是怎么工作的吗?