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 trial

Android Animations and Transitions Activity Transitions: Advanced Topics Postpone a Transition

If we postpone a transition, remember that we must start it or else "bad things will happen." Start the postponed transi

can you please help with challenge 2 of 2

MainActivity.java
public class MainActivity extends Activity {

    // Some code omitted for brevity!

    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_album_detail);
        setupTransitions();
        initViews();

    }

    public void setupTransitions() {
        // (Omitted) Code to set up transitions...
        postponeEnterTransition();

    }

    public void initViews(){ 
      startPostponeEnterTransition()
        // (Omitted) Code to initialize all views in the Activity...

    }
}

1 Answer

Rares Conea
PLUS
Rares Conea
Courses Plus Student 15,000 Points

The method you should call in initViews() should be startPostponedEnterTransition() and don't forget to add ";" at the end.