我正在尝试将图像旋转到某种程度并将背景填充为红色。例如,我有一个图像,想要将分钟旋转到 15 分钟(45 度)并用红色显示那个四分之一圆。
我使用以下代码将我的旋转旋转到某个角度,但我无法填充背景颜色。请帮忙。
RotateAnimation rotateAnimation = new RotateAnimation(
(1 - 1) * 6, 10 * 6,
Animation.RELATIVE_TO_SELF, 0.5f,
Animation.RELATIVE_TO_SELF, 0.5f);
rotateAnimation.setInterpolator(new LinearInterpolator());
rotateAnimation.setDuration(5000);
rotateAnimation.setFillEnabled(true);
rotateAnimation.setFillBefore(true);
rotateAnimation.setBackgroundColor(Color.RED);
orgClockImage.startAnimation(rotateAnimation);
谢谢