android 切换动画 编程实现,Android实现移动小球和CircularReveal页面切换动画实例代码...

前言

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

效果图如下

15060748781.gif?201781493453

是在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",// 动画半径

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",getIntent().getIntExtra("y",getIntent().getIntExtra("end_radius",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

@color/colorPrimary

@color/colorPrimaryDark

@color/blue

@null

@android:color/transparent

true

@null

总结

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

总结

如果觉得编程之家网站内容还不错,欢迎将编程之家网站推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。

小编个人微信号 jb51ccc

喜欢与人分享编程技术与工作经验,欢迎加入编程之家官方交流群!

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值