本文整理汇总了Java中android.transition.ChangeBounds.setStartDelay方法的典型用法代码示例。如果您正苦于以下问题:Java ChangeBounds.setStartDelay方法的具体用法?Java ChangeBounds.setStartDelay怎么用?Java ChangeBounds.setStartDelay使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类android.transition.ChangeBounds
的用法示例。
在下文中一共展示了ChangeBounds.setStartDelay方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: setUpTransitions
import android.transition.ChangeBounds; //导入方法依赖的package包/类
private void setUpTransitions() {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
getWindow().setSharedElementsUseOverlay(true);
final float[] buttonLocation = getIntent().getFloatArrayExtra(EXTRA_REVEAL_ANIM_LOCATION);
final float x = buttonLocation[0];
final float y = buttonLocation[1];
CircularRevealTransition circularRevealTransition = new CircularRevealTransition(x, y);
circularRevealTransition.addTarget(getString(R.string.transition_name_circular_reveal));
circularRevealTransition.setInterpolator(new FastOutSlowInInterpolator());
Slide enterSlide = new Slide();
enterSlide.setDuration(300);
enterSlide.setStartDelay(400);
enterSlide.setInterpolator(new FastOutSlowInInterpolator());
enterSlide.excludeTarget(getString(R.string.transition_name_circular_reveal), true);
enterSlide.excludeTarget(Window.STATUS_BAR_BACKGROUND_TRANSITION_NAME, true);
Slide returnSide = new Slide();
returnSide.setDuration(300);
returnSide.setInterpolator(new FastOutSlowInInterpolator());
returnSide.excludeTarget(getString(R.string.transition_name_circular_reveal), true);
returnSide.excludeTarget(Window.STATUS_BAR_BACKGROUND_TRANSITION_NAME, true);
TransitionSet set =
new TransitionSet().addTransition(circularRevealTransition).addTransition(enterSlide);
TransitionSet set2 =
new TransitionSet().addTransition(returnSide).addTransition(circularRevealTransition);
getWindow().setEnterTransition(set);
getWindow().setReturnTransition(set2);
ChangeBounds enterBounds = new ChangeBounds();
enterBounds.setDuration(300);
enterBounds.setStartDelay(400);
enterBounds.setInterpolator(new FastOutSlowInInterpolator());
ChangeBounds returnBounds = new ChangeBounds();
returnBounds.setDuration(300);
returnBounds.setInterpolator(new FastOutSlowInInterpolator());
getWindow().setSharedElementEnterTransition(enterBounds);
getWindow().setSharedElementReturnTransition(returnBounds);
}
}