Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jun 2nd, 2012  |  syntax: None  |  size: 0.36 KB  |  hits: 19  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. Animation while switching Activity in Android?
  2. overridePendingTransition( R.anim.slide_in_up, R.anim.slide_out_up );
  3.        
  4. overridePendingTransition(android.R.anim.fade_in, android.R.anim.fade_out);
  5.        
  6. @Override
  7.     public void onBackPressed() {
  8.         overridePendingTransition(android.R.anim.fade_in, android.R.anim.fade_out);
  9.         super.onBackPressed();
  10.     }