Android仿微信雷达扫描效果的实现方法

作者:程序亦非猿580230 时间:2022-07-28 01:49:17 

本文主要给大家介绍的是关于Android实现微信雷达扫描效果的相关内容,分享出来供大家参考学习,下面来看看详细的介绍:

废话不多说 先上图(用AS录制的 转换工具不是很好 所以看得效果不是很好)

效果图

Android仿微信雷达扫描效果的实现方法

示例代码

Activity 代码


public class ShapeDrawableActivity extends AppCompatActivity {
private ImageView ivLightbeam;

private ObjectAnimator radarScanAnim; // 扫描动画

private int width;
private int height;

@Override
protected void onCreate(Bundle savedInstanceState) {
 super.onCreate(savedInstanceState);

setContentView(R.layout.activity_shape_drawable);
 ivLightbeam = (ImageView) findViewById(R.id.ivLightbeam);
}

@Override
protected void onResume() {
 super.onResume();
 startScan();
}

@Override
public void onWindowFocusChanged(boolean hasFocus) {
 super.onWindowFocusChanged(hasFocus);
 if (height == 0 || width == 0) {   //获取屏幕长、宽
  width = ScreenUtils.getScreenWidth(this);
  height = ScreenUtils.getScreenHeight(this);   //根据屏幕长、宽计算扫描圆的直径
  int diameter = (int) Math.sqrt(Math.pow(height, 2) + Math.pow(width, 2));   //修改光束的大小,使光束可以扫描到整个屏幕
  FrameLayout.LayoutParams layoutParams = new FrameLayout.LayoutParams(diameter, diameter);
  ivLightbeam.setLayoutParams(layoutParams);   //将扫描光束的中心移至屏幕内容中心
  int offsetX = (width - diameter) / 2;
  int offsetY = (height - diameter) / 2 + ScreenUtils.getStatusHeight(this) / 2;
  ivLightbeam.setX(offsetX);
  ivLightbeam.setY(offsetY);
 }
}

@Override
protected void onPause() {
 super.onPause();
 stopScan();
} // 开始扫描

private void startScan() {
 radarScanAnim = ObjectAnimator.ofFloat(ivLightbeam, "rotation", 0f, 360f);
 radarScanAnim.setDuration(2000); //2秒扫描一圈
 radarScanAnim.setInterpolator(new LinearInterpolator());
 radarScanAnim.setRepeatCount(ObjectAnimator.INFINITE);//循环扫描

ivLightbeam.setVisibility(View.VISIBLE);
 radarScanAnim.start();
} // 停止扫描

private void stopScan() {
 ivLightbeam.setVisibility(View.GONE);
 radarScanAnim.end();
}
}

Activity 布局文件


<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#FA000000"
android:clipToPadding="false"
android:fitsSystemWindows="true">

<ImageView
 android:id="@+id/ivWave"
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 android:layout_margin="5dp"
 android:src="@drawable/wave" />

<ImageView
 android:id="@+id/ivLightbeam"
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 android:src="@drawable/light_beam" />

</FrameLayout>

绘制扫描光束


<shape
xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="oval">

<size
 android:width="500dp"
 android:height="500dp" />

<gradient
 android:endColor="#AAAAAAAA"
 android:startColor="#00000000"
 android:type="sweep"
 />
</shape>

绘制雷达波纹


<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
 <!--最外层圆圈-->
 <shape android:shape="oval">
  <solid android:color="#10FFFFFF" />
  <size
   android:width="600dp"
   android:height="600dp" />
  <stroke
   android:color="#10B8B8B8"
   android:dashWidth="1dp" />
 </shape>
</item>

<item
 android:bottom="100dp"
 android:left="100dp"
 android:right="100dp"
 android:top="100dp">
 <!--最中间层圆圈-->
 <shape android:shape="oval">
  <solid android:color="#1CFFFFFF" />
  <stroke
   android:color="#1CB8B8B8"
   android:dashWidth="1dp" />
 </shape>
</item>

<item
 android:bottom="200dp"
 android:left="200dp"
 android:right="200dp"
 android:top="200dp">

<!--最中心圆圈-->
 <shape android:shape="oval">
  <solid android:color="#2CFFFFFF" />
  <stroke
   android:color="#2CB8B8B8"
   android:dashWidth="1dp" />
 </shape>
</item>
</layer-list>

来源:http://www.jianshu.com/p/4028b814a57d

标签:android,雷达扫描,微信
0
投稿

猜你喜欢

  • Spring中的注解之@Override和@Autowired

    2022-08-07 19:56:47
  • java实现新浪微博Oauth接口发送图片和文字的方法

    2023-11-29 01:43:04
  • C#操作JSON(序列化与反序列化)的方法详解

    2022-01-27 20:15:10
  • Android开发gradle拉取依赖的加速配置

    2023-05-31 03:16:08
  • C#字符集编码的使用及说明

    2023-12-05 02:06:05
  • Android音乐播放器制作 加入控制台(三)

    2022-04-15 05:09:30
  • Android iOS常用APP崩溃日志获取命令方法

    2022-06-15 08:07:14
  • Mybatis中Mapper映射文件使用详解

    2023-02-13 17:57:07
  • Springboot项目中使用redis的配置详解

    2021-11-26 03:43:44
  • Spring Boot Actuator监控端点小结

    2023-02-15 05:04:23
  • Android 10 启动分析之init语法详解

    2022-03-12 05:07:16
  • 详解Java中如何正确书写单例模式

    2022-06-20 01:35:00
  • Javaweb基础入门requse原理与使用

    2021-10-07 20:55:29
  • Android studio 3.0上进行多渠道打包遇到的问题小结(超简洁版)

    2022-09-16 07:58:40
  • C#实现对字符串进行大小写切换的方法

    2021-07-24 03:30:30
  • Java多线程实现Runnable方式

    2022-06-29 17:09:46
  • Java实现将类数据逐行写入CSV文件的方法详解

    2023-02-27 17:11:11
  • Android实现圆形渐变加载进度条

    2021-07-17 18:38:06
  • SpringBoot 利用thymeleaf自定义错误页面

    2023-11-29 08:29:55
  • android播放器实现歌词显示功能

    2021-10-27 13:44:37
  • asp之家 软件编程 m.aspxhome.com