I am trying to use activity transition animaition using OverridePendingTransition The same code works while I move from 1 activity to another everywhere in my App But when I use the same while transitioning from an activity which is a part of tab to any other activity. The animation does not work and the standard animation takes place
Intent intent = new Intent(xxx.this,
yyy.class);
startActivity(intent);
overridePendingTransition(R.anim.slide_left_in, R.anim.slide_left_out);
iii
I am stuck Any help would be appreciated
增 编
Cheers Himanshu