以编程方式创建径向渐变

2022-09-03 04:46:10

我试图以编程方式重现以下渐变。

<shape xmlns:android="http://schemas.android.com/apk/res/android">
    <gradient 
        android:startColor="@color/startcolor" 
        android:centerColor="#343434"
        android:endColor="#00000000"
        android:type="radial"
        android:gradientRadius="140"
        android:centerY="45%"
     />
    <corners android:radius="0dp" />
</shape>

如何以编程方式设置参数?谢谢

        android:centerY="45%"

答案 1

http://developer.android.com/reference/android/graphics/drawable/GradientDrawable.html

要设置该特定参数(我假设一个 centerX 值,因为您没有指定一个值):

yourGradientDrawable.setGradientCenter(1.0f,  0.45f);

因此,要以编程方式创建上述渐变(除了使用不同的颜色):

GradientDrawable g = new GradientDrawable(Orientation.TL_BR, new int[] { getResources().getColor(R.color.startcolor), Color.rgb(255, 0, 0), Color.BLUE });
g.setGradientType(GradientDrawable.RADIAL_GRADIENT);
g.setGradientRadius(140.0f);
g.setGradientCenter(0.0f, 0.45f);

注: 对于径向渐变,将忽略方向,但对于采用颜色的构造函数,需要该方向。


答案 2

推荐