答案 0 :(得分:1)
这是Sweep Gradient
的示例。好吧,也许它也有一个径向渐变叠加,但除此之外。
也许这会对您有所帮助:https://stackoverflow.com/a/9054550/2066079
然后,这只是动画的问题。看一下这个例子:How to animate gradient?
答案 1 :(得分:1)
这里有一个可用于雷达扫描视图的库https://github.com/gpfduoduo/RadarScanView
答案 2 :(得分:0)
很简单 步骤 1. 在 xml 布局中添加图像。 第 2 步。转到 java 或活动文件,然后旋转图像。
活动代码:-
ImageView scanner = (ImageView) findViewById(R.id.scann);
RotateAnimation rotate = new RotateAnimation(0, 360,
Animation.RELATIVE_TO_SELF, 0.5f, Animation.RELATIVE_TO_SELF, 0.5f);
rotate.setDuration(1500);
rotate.setRepeatCount(3);
rotate.setInterpolator(new LinearInterpolator());
scanner.startAnimation(rotate);