1

If I have three activities, I want to move from one activity to another when touching the moving on the screen horizontally(from left to right or right to left). how to access the action of sliding the screen and ?

Adham
  • 63,550
  • 98
  • 229
  • 344
  • [You should consider using `Fragments` and `ViewPager`.](http://stackoverflow.com/a/9849234/420015) – adneal Jul 14 '12 at 12:13

2 Answers2

9

try this:

     try    {           
        Intent newIntent = new Intent(view.getContext(), NewActivity.class);    
        startActivityForResult(newIntent, 0);
        overridePendingTransition(android.R.anim.slide_in_left, android.R.anim.slide_out_right);        
    } catch(Exception ex) {
    }
Yogesh Somani
  • 2,624
  • 3
  • 21
  • 34