/* * Copyright (C) 2015 takahirom * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * */ package com.kogitune.activity_transition.fragment; import android.animation.Animator; import android.animation.TimeInterpolator; import android.app.Fragment; import android.os.Bundle; import android.view.View; import android.view.animation.DecelerateInterpolator; import com.kogitune.activity_transition.core.MoveData; import com.kogitune.activity_transition.core.TransitionAnimation; import static com.kogitune.activity_transition.fragment.FragmentTransitionLauncher.TRANSITION_BUNDLE; public class FragmentTransition { private static TimeInterpolator interpolator; private Animator.AnimatorListener listener; private int duration = 1000; private View toView; private android.support.v4.app.Fragment supportFragment; private Fragment fragment; private FragmentTransition(Fragment fragment) { this.fragment = fragment; } private FragmentTransition(android.support.v4.app.Fragment fragment) { this.supportFragment = fragment; } public static FragmentTransition with(Fragment fragment) { return new FragmentTransition(fragment); } public static FragmentTransition with(android.support.v4.app.Fragment fragment) { return new FragmentTransition(fragment); } public FragmentTransition to(View toView) { this.toView = toView; return this; } public FragmentTransition duration(int duration) { this.duration = duration; return this; } public FragmentTransition enterListener(Animator.AnimatorListener listener) { this.listener = listener; return this; } public FragmentTransition interpolator(TimeInterpolator interpolator) { FragmentTransition.interpolator = interpolator; return this; } public ExitFragmentTransition start(Bundle savedInstanceState) { if (interpolator == null) { interpolator = new DecelerateInterpolator(); } final Bundle bundle; if (fragment == null) { if (supportFragment.getArguments() == null) { throw new IllegalStateException("you should call FragmentTransitionLauncher.prepare() at first "); } bundle = supportFragment.getArguments().getBundle(TRANSITION_BUNDLE); } else { if (fragment.getArguments() == null) { throw new IllegalStateException("you should call FragmentTransitionLauncher.prepare() at first "); } bundle = fragment.getArguments().getBundle(TRANSITION_BUNDLE); } final MoveData moveData = TransitionAnimation.startAnimation(toView, bundle, savedInstanceState, duration, interpolator, listener); if (fragment == null) { return new ExitFragmentTransition(supportFragment, moveData); } return new ExitFragmentTransition(fragment, moveData); } }