Android实现移动小球和CircularReveal页面切换动画实例代码

 更新时间:2017年09月14日 09:38:25   作者:超神的菠萝  
这篇文章主要给大家介绍了关于利用Android如何实现移动的小球和CircularReveal页面切换动画的相关资料,文中通过示例代码介绍的非常详细,对各位Android开发者们具有一定的参考学习价值,需要的朋友们下面来一起看看吧。

前言

本文主要给大家介绍了关于Android如何实现移动小球和CircularReveal页面切换动画的相关内容,分享出来供大家参考学习,下面话不多说了,来一起看看详细的介绍吧。

效果图如下

是在fragment中跳转activity实现的效果,fragment跳fragment,activity跳activity类似~~

实现过程

  • 重写FloatingActionButton的onTouchListener()方法,使小球可以移动,并判断边界
  • 点击fab时记录坐标传到下一个页面,在下一个页面展示动画。
  • 点击后退或者重写onBackPressed()方法,执行动画

重写Fab的onTouchListener()

 floatingActionButton.setOnTouchListener(new View.OnTouchListener() {
  @Override
  public boolean onTouch(View view, MotionEvent ev) {
  switch (ev.getAction()) {
   case MotionEvent.ACTION_DOWN:
   downX = ev.getX();
   downY = ev.getY();
   isClick = true;
   break;
   case MotionEvent.ACTION_MOVE:
   isClick = false;
   moveX = ev.getX();
   moveY = ev.getY();

   int offsetX = (int) (moveX - downX);
   int offsetY = (int) (moveY - downY);

   //这里使用了setTranslation来移动view。。。尝试过layout。不知道为什么fragment切换回来的时候会恢复原位
   floatingActionButton.setTranslationX(floatingActionButton.getTranslationX() + offsetX);
   floatingActionButton.setTranslationY(floatingActionButton.getTranslationY() + offsetY);

   break;
   case MotionEvent.ACTION_UP:
   //用来触发点击事件
   if (isClick) {
    startAct();
    return false;
   }
   //用来判断移动边界

   if (floatingActionButton.getX() < 0) {
    floatingActionButton.setX(0);
   }
   if (floatingActionButton.getX() + floatingActionButton.getWidth() > ScreenUtil.getScreenWidth(getContext())) {
    floatingActionButton.setX(ScreenUtil.getScreenWidth(getContext()) - floatingActionButton.getWidth());
   }
   if (floatingActionButton.getY() < titleHeight) {
    floatingActionButton.setY(0);
   }
   if (floatingActionButton.getY() + floatingActionButton.getHeight() + titleHeight >
    getActivity().findViewById(R.id.activity_main_mainLl).getHeight() - getActivity().findViewById(R.id.fc_rg).getHeight()) {
    floatingActionButton.setY(getBottomY());
   }

   break;
  }
  return true;
  }

  private void startAct() {
  //跳转Activity,传递动画参数
  Intent intent = new Intent(getActivity(), CheckWorkActivity.class);
  intent.putExtra("x", (int) floatingActionButton.getX() + floatingActionButton.getWidth() / 2);
  intent.putExtra("y", (int) floatingActionButton.getY() + floatingActionButton.getHeight() / 2);
  intent.putExtra("start_radius", floatingActionButton.getWidth() / 2);
  intent.putExtra("end_radius", DialogFragment.this.view.getHeight());
  startActivity(intent);
  }
 });

在下一个页面中实现CircleRevel动画

onCrete中调用

 private void initAnimation() {
 //ll为根布局
 final LinearLayout linearLayout = (LinearLayout) findViewById(R.id.ll);
 linearLayout.post(new Runnable() {
  @Override
  public void run() {
  if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
   Animator animator = ViewAnimationUtils.createCircularReveal(
    linearLayout,// 操作的视图
    getIntent().getIntExtra("x", 0), // 动画的中心点X
    getIntent().getIntExtra("y", 0) + findViewById(R.id.title).getHeight(), // 动画的中心点Y
    getIntent().getIntExtra("start_radius", 0), // 动画半径
    getIntent().getIntExtra("end_radius", 0)  // 动画结束半径
   );
   animator.setInterpolator(new AccelerateInterpolator());
   animator.setDuration(500);
   animator.start();
  }
  }
 });
 }

点击后退或者触发onBackPressed时候调用

 private void endAnim() {
 final LinearLayout linearLayout = (LinearLayout) findViewById(R.id.ll);
 if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
  Animator animator = ViewAnimationUtils.createCircularReveal(
   linearLayout,// 操作的视图
   getIntent().getIntExtra("x", 0),
   getIntent().getIntExtra("y", 0) + findViewById(R.id.title).getHeight(),
   getIntent().getIntExtra("end_radius", 0),
   getIntent().getIntExtra("start_radius", 0)

  );
  animator.setInterpolator(new AccelerateInterpolator());
  animator.setDuration(500);
  animator.addListener(new AnimatorListenerAdapter() {
  @Override
  public void onAnimationEnd(Animator animation) {
   super.onAnimationEnd(animation);
   finish();
  }
  });
  animator.start();
 }
 }

还有一个重要的地方是修改两个activity的theme

 <style name="AppThemeCircleRevel" parent="Theme.AppCompat.Light.NoActionBar">
 <!-- Customize your theme here. -->
 <item name="colorPrimary">@color/colorPrimary</item>
 <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
 <item name="colorAccent">@color/blue</item>

 <item name="android:windowAnimationStyle">@null</item>
 <item name="android:windowBackground">@android:color/transparent</item>
 <item name="android:windowIsTranslucent">true</item>
 <item name="android:colorBackgroundCacheHint">@null</item>
 </style>

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,如果有疑问大家可以留言交流,谢谢大家对脚本之家的支持。

相关文章

  • Android 实现手机接通电话后振动提示的功能

    Android 实现手机接通电话后振动提示的功能

    本文主要介绍Android 实现手机接通电话后振动提示的功能,这里整理了详细的相关资料,并附有示例代码,有需要的朋友可以参考下
    2016-08-08
  • Android程序启动时出现黑屏问题的解决方法

    Android程序启动时出现黑屏问题的解决方法

    这篇文章主要介绍了Android程序启动时出现黑屏问题的解决方法,分析了黑屏出现的原因及相应的解决方法,需要的朋友可以参考下
    2016-08-08
  • Android手势操作简单实例讲解

    Android手势操作简单实例讲解

    这篇文章主要为大家详细介绍了Android手势操作简单实例,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2016-09-09
  • android 开发教程之日历项目实践(一)

    android 开发教程之日历项目实践(一)

    决定开始学习 Android 平台下的软件开发,以日历作为实践项目,进行一周后,基本完成,有需要的朋友可以参考下
    2013-01-01
  • Android studio创建第一个app

    Android studio创建第一个app

    这篇文章主要为大家详细介绍了如何使用Android studio创建你的第一个项目Hello World,感兴趣的小伙伴们可以参考一下
    2016-05-05
  • Kotlin中标准函数run、with、let、also与apply的使用和区别详解

    Kotlin中标准函数run、with、let、also与apply的使用和区别详解

    相比Java, Kotlin提供了不少高级语法特性。对于一个Kotlin的初学者来说经常会写出一些不够优雅的代码,下面这篇文章主要给大家介绍了关于Kotlin中标准函数run、with、let、also与apply的使用和区别的相关资料,需要的朋友可以参考下。
    2018-03-03
  • Android实现五子棋游戏(局域网版)

    Android实现五子棋游戏(局域网版)

    这篇文章主要为大家详细介绍了Android实现局域网版的五子棋游戏,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2022-05-05
  • android实现底部导航栏

    android实现底部导航栏

    这篇文章主要为大家详细介绍了android实现底部导航栏,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2018-06-06
  • Android Studio缓存文件夹配置教程

    Android Studio缓存文件夹配置教程

    这篇文章主要为大家详细介绍了Android Studio缓存文件夹配置教程,配置Android Studio的缓存路径,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2018-07-07
  • Android Studio配置内嵌JDK的方法

    Android Studio配置内嵌JDK的方法

    这篇文章主要介绍了Android Studio配置内嵌JDK的方法,需要的朋友可以参考下
    2018-02-02

最新评论