编辑:看看上面的解决方案
我吓坏了。我只想做的就是设置一个线性 GradientDrawable,它会改变渐变的垂直中心......绘制渐变效果很好,但我怎样才能改变它的中心?!?
RelativeLayout bgScreen = (RelativeLayout) findViewById(R.id.player_screen);
GradientDrawable gd = new GradientDrawable(
GradientDrawable.Orientation.TOP_BOTTOM,
new int[] {startColor,endColor});
gd.setCornerRadius(0f);
gd.setAlpha(200);
bgScreen.setBackground(gd);
public void redrawOrChangeBackgroundGradient(){
//??? either change center of existing
gd.setGradientCenter(float x, float y) //ONLY works in RADIAL_GRADIENT or SWEEP_GRADIENT.
//??? or complete redraw Gradient with different center
}
这是我想如何通过代码更改渐变的图片示例
不可能那么难,可以吗?