Animations
在材料设计的动画给用户的反馈意见对他们的行动,并提供视觉连续性,用户与应用程序进行交互。该材料的主题提供了一些默认的动画按钮和活动过渡,以及Android L开发者预览版提供了让你自定义这些动画和创造新的附加的API:
默认的触摸反馈的动画按钮使用新的 RippleDrawable
类,不同状态之间的转换与产生连锁反应。
在大多数情况下,这个功能应该在你的视图的XML指定背景适用
为一个有界涟漪或 ?android:attr/selectableItemBackground
的纹波超出视图范围。您还可以创建一个?android:attr/selectableItemBackgroundBorderless
RippleDrawable
并将其设置为你的视图的背景。或者,你可以定义一个RippleDrawable
为使用XML资源波纹
元素。而Android L开发者预览版的动画色彩的选择与产生连锁反应。
您可以将颜色分配给RippleDrawable
对象。要更改默认的触摸反馈的颜色,使用的主题的android:colorControlHighlight
属性。
该
方法使你的动画剪切圈来显示或隐藏视图。ViewAnimationUtils.createCircularReveal
为了揭示利用这种效应以前看不见的看法:
// previously invisible view View myView = findViewById(R.id.my_view); // get the center for the clipping circle int cx = (myView.getLeft() + myView.getRight()) / 2; int cy = (myView.getTop() + myView.getBottom()) / 2; // get the final radius for the clipping circle int finalRadius = myView.getWidth(); // create and start the animator for this view // (the start radius is zero) ValueAnimator anim = ViewAnimationUtils.createCircularReveal(myView, cx, cy, 0, finalRadius); anim.start();
若要隐藏使用这种效应以前可见视图:
// previously visible view final View myView = findViewById(R.id.my_view); // get the center for the clipping circle int cx = (myView.getLeft() + myView.getRight()) / 2; int cy = (myView.getTop() + myView.getBottom()) / 2; // get the initial radius for the clipping circle int initialRadius = myView.getWidth(); // create the animation (the final radius is zero) ValueAnimator anim = ViewAnimationUtils.createCircularReveal(myView, cx, cy, initialRadius, 0); // make the view invisible when the animation is done anim.addListener(new AnimatorListenerAdapter() { @Override public void onAnimationEnd(Animator animation) { super.onAnimationEnd(animation); myView.setVisibility(View.INVISIBLE); } }); // start the animation anim.start();
您可以进入和退出的过渡和活动之间共享内容的转变指定自定义动画。
而Android L开发者预览版支持这些进入和退出的转换:
它扩展了任何过渡android.transition.Visibility
类是支持作为进入或退出过渡。欲了解更多信息,请参阅API参考 android.transition.Transition
类。
而Android L开发者预览版还支持这些共同元素转变:
当您启用activity 转变在你的应用程序,默认的交叉渐变过渡的进入和退出activity 之间激活。
首先,启用窗口内容转换与android:windowContentTransitions当你定义一个样式继承自 material theme属性。您也可以指定进入,退出,并在您的样式定义共享的元素转换:
<style name="BaseAppTheme" parent="android:Theme.Material"> <!-- enable window content transitions --> <item name="android:windowContentTransitions">true</item> <!-- specify enter and exit transitions --> <item name="android:windowEnterTransition">@transition/explode</item> <item name="android:windowExitTransition">@transition/explode</item> <!-- specify shared element transitions --> <item name="android:windowSharedElementEnterTransition"> @transition/move_image</item> <item name="android:windowSharedElementExitTransition"> @transition/move_image</item> </style>
该move_image
在这个例子中Transition
的定义如下:
<!-- res/transition/move_image.xml --> <!-- (see also Shared Transitions below) --> <transitionSet xmlns:android="http://schemas.android.com/apk/res/android"> <moveImage/> </transitionSet>
该moveImage
元素对应于android.transition.MoveImage
类。欲了解更多信息,请参阅API参考android.transition.Transition
。
为了使窗口的内容转换在你的代码,而不是,调用 Window.requestFeature
方法:
// inside your activity (if you did not enable transitions in your theme) getWindow().requestFeature(Window.FEATURE_CONTENT_TRANSITIONS); // set an exit transition getWindow().setExitTransition(new Explode());
要指定在您的代码转换,调用这些方法有一个
对象:Transition
Window.setEnterTransition
Window.setExitTransition
Window.setSharedElementEnterTransition
Window.setSharedElementExitTransition
该setExitTransition
和setSharedElementExitTransition
方法定义为调用活动结束过渡。该setEnterTransition
和 setSharedElementEnterTransition
方法定义了所谓的活动进入过渡。
为了得到一个Transition
的完整效果,必须同时在主叫和被叫activity ,使窗口中的内容转换。否则,调用活动将启动退出过渡,但随后你会看到一个窗口的过渡(如规模或褪色)。
要尽快启动进入转型期,使用 Window.setAllowEnterTransitionOverlap
上称为活性的方法。这让你有更多戏剧性的输入转换。这同样适用于呼叫的活性和出口过渡与Window.setAllowExitTransitionOverlap
方法。
如果您启用转换并设置为Activity退出 transitions ,transition您启动另一个Activity与激活的startActivity
方法。如果已经设置了第二个Activity的进 入 transitions,亦是Activity开始时激活。
为了使两项Activity有一个共同的元素之间的画面转换动画:
android:viewName
属性。ActivityOptions.makeSceneTransitionAnimation
方法。// get the element that receives the click event final View imgContainerView = findViewById(R.id.img_container); // get the common element for the transition in this activity final View androidRobotView = findViewById(R.id.image_small); // define a click listener imgContainerView.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { Intent intent = new Intent(this, Activity2.class); // create the transition animation - the images in the layouts // of both activities are defined with android:viewName="robot" ActivityOptions options = ActivityOptions .makeSceneTransitionAnimation(this, androidRobotView, "robot"); // start the new activity startActivity(intent, options.toBundle()); } });
对于您在您的代码生成共享动态视图,使用View.setViewName
方法在两个Activity指定一个共同的元素名称。
为了扭转场景过渡动画,当你完成了第二个Activity,叫 Activity.finishAfterTransition
方法,而不是Activity.finish
。
为了使两项Activity有多个共享的元素之间的场景过渡动画,定义了两种布局方式共享元素与安卓的viewName
属性(或使用View.setViewName
在这两个活动),并创建一个 ActivityOptions
对象,如下所示:
ActivityOptions options = ActivityOptions.makeSceneTransitionAnimation(this, Pair.create(view1, "agreedName1"), Pair.create(view2, "agreedName2"));
在材料设计动画依靠曲线插补时间和空间的运动模式。而Android L开发者预览版提供了新的API,使您能够为动画定义自定义定时曲线和曲线运动模式。
该PathInterpolator
类是基于贝塞尔曲线或一个新的插补
对象。该插补器指定一个1x1的正方形运动曲线,用(0,0)锚点和(1,1)和控制点作为使用构造函数的参数指定。您也可以定义一个Path
PathInterpolator
为XML资源:
<pathInterpolator xmlns:android="http://schemas.android.com/apk/res/android" android:controlX1="0.4" android:controlY1="0" android:controlX2="1" android:controlY2="1"/>
而Android L开发者预览版提供了XML资源在材料设计规范的三个基本曲线:
@interpolator/fast_out_linear_in.xml
@interpolator/fast_out_slow_in.xml
@interpolator/linear_out_slow_in.xml
你可以传递一个PathInterpolator
对象的 Animator.setInterpolation
方法。 该ObjectAnimator
类有新的构造函数,使您能够同时使用两个或多个属性在一次路径动画的坐标。例如,下面的动画师使用路径
对象进行动画视图的X和Y属性:
ObjectAnimator mAnimator; mAnimator = ObjectAnimator.ofFloat(view, View.X, View.Y, path); ... mAnimator.start();
新StateListAnimator
类可以让你定义动画运行时的视图状态发生改变。下面的示例演示如何定义一个StateListAnimator
为XML资源:
<!-- animate the translationZ property of a view when pressed --> <selector xmlns:android="http://schemas.android.com/apk/res/android"> <item android:state_pressed="true"> <set> <objectAnimator android:propertyName="translationZ" android:duration="100" android:valueTo="2" android:valueType="floatType"/> <!-- you could have other objectAnimator elements here for "x" and "y", or other properties --> </set> </item> <item android:state_enabled="true" android:state_pressed="false" android:state_focused="true"> <set> <objectAnimator android:propertyName="translationZ" android:duration="100" android:valueTo="2" android:valueType="floatType"/> </set> </item> </selector>
注意:有一个在需要valueFrom值将在StateListAnimator动画提供,以获得正确的行为升开发者预览版本中的已知问题。
新AnimatedStateListDrawable
类,您可以创建显示相关的视图状态更改之间的动画可绘。默认情况下,一些在Android L开发者预览版的系统部件的使用这些动画。下面的示例演示如何定义一个AnimatedStateListDrawable
为XML资源:
<!-- res/drawable/myanimstatedrawable.xml --> <animated-selector xmlns:android="http://schemas.android.com/apk/res/android"> <!-- provide a different drawable for each state--> <item android:id="@+id/pressed" android:drawable="@drawable/drawableP" android:state_pressed="true"/> <item android:id="@+id/focused" android:drawable="@drawable/drawableF" android:state_focused="true"/> <item android:id="@id/default" android:drawable="@drawable/drawableD"/> <!-- specify a transition --> <transition android:fromId="@+id/default" android:toId="@+id/pressed"> <animation-list> <item android:duration="15" android:drawable="@drawable/dt1"/> <item android:duration="15" android:drawable="@drawable/dt2"/> ... </animation-list> </transition> ... </animated-selector>
而Android L开发者预览版,可以定义位图或九补丁阿尔法口罩,并使用解析为一个颜色资源(例如,颜色资源或主题属性着色他们?android:attr/colorPrimary
)。您可以一次创建这些资产并自动将它们上色,以配合你的主题。
若要套用色调为位图,使用setTint
方法或android:tint
的属性BitmapDrawable
和NinePatchDrawable
。
该setTint
方法也可以让你设置用于混合色调颜色Porter-Duff模式NinePatchDrawable
和BitmapDrawable
在代码中的对象。要设置色调模式在布局中,使用的android:tintMode
属性。
而Android L开发者预览版支持库包含调色板
类,它允许您从图像中提取突出的颜色。这个类提取以下突出的颜色:
要提取这些颜色,一传位图
对象的 Palette.generate
您加载图像静态方法在后台线程。如果您无法使用该线程,调用Palette.generateAsync
方法,而不是提供一个监听器。
从图像中提取的突出颜色,使用getter方法在 面板
类,如Palette.getVibrantColor
。
欲了解更多信息,请参阅API参考 android.support.v7.graphics.Palette
类。