我试图以编程方式重现以下渐变。
<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%"
答案 0 :(得分:27)
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);
注意:径向渐变会忽略方向,但是需要颜色的构造函数。