雷达像扫描动画Android

时间:2015-10-19 18:01:52

标签: android animation dictionary

我正在尝试在地图上制作像雷达扫描这样的东西。我也设计了它。请检查我正在添加的图片。我已经尝试使用循环进度条。但没有成功。请以正确的方法指导我。

3 个答案:

答案 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);