Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialZeeshan Khalid
3,181 PointsHow to create transitionset
Ordering_Sequentional constant not found.. Fade class also not found, how Can I create transitionSet
public class MainActivity extends Activity {
protected TransitionManager mTransitionManager;
protected Scene mScene1;
protected Scene mScene2;
protected Scene mCurrentScene;
protected TransitionSet mForwardSet;
protected TransitionSet mBackwardSet;
// Some code omitted for brevity
public void onButtonClicked(View view) {
if (mCurrentScene == mScene2) {
mCurrentScene = mScene1;
}
else {
mCurrentScene = mScene2;
}
mTransitionManager.transitionTo(mCurrentScene);
}
protected void setupTransitions() {
// These methods are setting up scenes and transitions sets like in the video
mTransitionManager = new TransitionManager();
TransitionSet forwordSet = new TransitionSet();
TransitionSet backwordSet = new TransitionSet();
forwordSet.setOrdering(TransitionSet.ORDERING_SEQUENTIAL);
backwordSet.setOrdering(TransitionSet.ORDERING_SEQUENTIAL);
mTransitionManager.setTransition(mScene1, mScene2, forwordSet);
mTransitionManager.setTransition(mScene2, mScene1, backwordSet);
mScene2.enter();
initScenes();
initSets();
// Start here!
}
}
1 Answer
Seth Kroger
56,413 Points protected void setupTransitions() {
// These methods are setting up scenes and transitions sets like in the video
initScenes(); // <--- restore these two calls. you inadvertently removed them
initSets();
// Start here!
mTransitionManager = new TransitionManager();
// No need to set up the TransitionSets since the init methods take care of those.
// Just set the two transitions asked for in the question.
mTransitionManager.setTransition(mScene1, mScene2, mForwardSet);
mTransitionManager.setTransition(mScene2, mScene1, mBackwardSet);
}