Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How should you implement the sort of sliding that for example the Honeycomb Gmail client uses?

Can TransactionManager handle this automatically by adding and removing the Fragments, it's kind of difficult to test this due to the emulator being a slideshow :)

share|improve this question

1 Answer

up vote 118 down vote accepted

To animate the transition between fragments, or to animate the process of showing or hiding a fragment you use the Fragment Manager to create a Fragment Transaction.

Within each Fragment Transaction you can specify in and out animations that will be used for show and hide respectively (or both when replace is used).

The following code shows how you would replace a fragment by sliding out one fragment and sliding the other one in it's place.

FragmentTransaction ft = getFragmentManager().beginTransaction();
ft.setCustomAnimations(R.anim.slide_in_left, R.anim.slide_out_right);

DetailsFragment newFragment = DetailsFragment.newInstance();

ft.replace(R.id.details_fragment_container, newFragment, "detailFragment");

// Start the animated transition.
ft.commit();

To achieve the same thing with hiding or showing a fragment you'd simply call ft.show or ft.hide, passing in the Fragment you wish to show or hide respectively.

For reference, the XML animation definitions would use the objectAnimator tag. An example of slide_in_left might look something like this:

<?xml version="1.0" encoding="utf-8"?>
<set>
  <objectAnimator xmlns:android="http://schemas.android.com/apk/res/android"
    android:propertyName="x" 
    android:valueType="floatType"
    android:valueFrom="-1280"
    android:valueTo="0" 
    android:duration="500"/>
</set>
share|improve this answer
15  
When i tried this it show RuntimeException: Unknown animator name: translate. – Labeeb P Feb 8 '11 at 10:16
1  
@Dave: Added an example to the answer. – Reto Meier Feb 27 '11 at 17:43
4  
That helped a lot. I was on the right track but just didn't get all the way there. For the other readers, you could also have android:interpolator as an attribute, with your favorite one specified (such as "@android:interpolator/linear"). It defaults to "@android:interpolator/accelerate_decelerate". – Dave MacLean Feb 28 '11 at 0:44
6  
I'm targeting API Level 7 with the compatability APIs. Is there a way for me to animate Fragments? – Jarrod Smith Mar 15 '12 at 21:55
5  
@JarrodSmith you can try using a compatibility library like NineOldAndroids to bring the Honeycomb API down to Eclair. – Mr. S Apr 28 '12 at 14:05
show 10 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.