Home | History | Annotate | Download | only in infobar

Lines Matching defs:toShow

62         public View toShow;
72 toShow = view;
304 * Animates swapping out the current View in the {@code infoBar} with {@code toShow} without
307 * @param toShow View representing the InfoBar's new contents.
309 public void swapInfoBarViews(InfoBar infoBar, View toShow) {
318 if (transition != null && transition.toShow == toShow) {
323 enqueueInfoBarAnimation(infoBar, toShow, AnimationHelper.ANIMATION_TYPE_SWAP);
365 private void enqueueInfoBarAnimation(InfoBar infoBar, View toShow, int animationType) {
366 InfoBarTransitionInfo info = new InfoBarTransitionInfo(infoBar, toShow, animationType);
436 View toShow = info.toShow;
444 toShow = targetView.detachCurrentView();
452 mAnimation = new AnimationHelper(this, targetView, info.target, toShow, info.animationType);
517 public void prepareTransition(View toShow) {
518 if (toShow != null) {
522 ViewGroup parent = (ViewGroup) toShow.getParent();
523 if (parent != null) parent.removeView(toShow);
528 mAnimationSizer.addView(toShow, 0,