安卓中一些界面过场动画的实现

来源:互联网 发布:高级java招聘 编辑:程序博客网 时间:2024/05/16 06:00

一.在res的anim下写anim文件

<?xml version="1.0" encoding="utf-8"?><alpha xmlns:android="http://schemas.android.com/apk/res/android"    android:interpolator="@android:anim/accelerate_interpolator"    android:fromAlpha="0.0" android:toAlpha="1.0"    android:duration="300" />
代码引用
 Intent intent = new Intent(activity, MainActivity.class);        activity.startActivity(intent);        activity.overridePendingTransition(R.anim.fade_in,                com.jaydenxiao.common.R.anim.fade_out);

二.安卓5.x共享元素

Intent intent = new Intent(mContext, NewsDetailActivity.class); if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {            ActivityOptions options = ActivityOptions                    .makeSceneTransitionAnimation((Activity) mContext,view, AppConstant.TRANSITION_ANIMATION_NEWS_PHOTOS);            mContext.startActivity(intent, options.toBundle());        } else {            //让新的Activity从一个小的范围扩大到全屏            ActivityOptionsCompat options = ActivityOptionsCompat                    .makeScaleUpAnimation(view, view.getWidth() / 2, view.getHeight() / 2, 0, 0);            ActivityCompat.startActivity((Activity) mContext, intent, options.toBundle());        }


这里,参数view是外界点击跳转的组件,AppConstant.TRANSITION_ANIMATION_NEWS_PHOTOS="transition_animation_news_photos"
是需要共享的图片元素,所以对应的需要在目标界面展示效果的图片控件上加上共享元素属性

<ImageView                android:id="@+id/news_detail_photo_iv"                android:layout_width="match_parent"                android:layout_height="match_parent"                android:fitsSystemWindows="true"                android:scaleType="centerCrop"                android:transitionName="transition_animation_news_photos"                tools:targetApi="lollipop"/>


ps:补上属性动画的一种写法

 PropertyValuesHolder alpha = PropertyValuesHolder.ofFloat("alpha", 0.3f, 1f);        PropertyValuesHolder scaleX = PropertyValuesHolder.ofFloat("scaleX", 0.3f, 1f);        PropertyValuesHolder scaleY = PropertyValuesHolder.ofFloat("scaleY", 0.3f, 1f);        ObjectAnimator objectAnimator1 = ObjectAnimator.ofPropertyValuesHolder(tvName, alpha, scaleX, scaleY);        ObjectAnimator objectAnimator2 = ObjectAnimator.ofPropertyValuesHolder(ivLogo, alpha, scaleX, scaleY);        AnimatorSet animatorSet = new AnimatorSet();        animatorSet.playTogether(objectAnimator1, objectAnimator2);        animatorSet.setInterpolator(new AccelerateInterpolator());        animatorSet.setDuration(2000);        animatorSet.addListener(new Animator.AnimatorListener() {            @Override            public void onAnimationStart(Animator animator) {            }            @Override            public void onAnimationEnd(Animator animator) {                MainActivity.startAction(SplashActivity.this);                finish();            }            @Override            public void onAnimationCancel(Animator animator) {            }            @Override            public void onAnimationRepeat(Animator animator) {            }        });        animatorSet.start();




0 0
原创粉丝点击