How can i make a dynamic flipping screen(like that of iPhone) in Android
I am parsing data through the web service. I want the flipping horizontally rather than vertically. Here is a tutorial where ViewFlipper is used but it is for static data. Here is our code where we need flipping between 2 activities: Splash.java public class Splash extends Activity{ /** Called when the activity is first created. */ public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); startActivity(new Intent(Splash.this, MainMenu.class)); Splash.this.finish(); } } Splash.xml <?xml version="1.0" encoding="utf-8"?> <AbsoluteLayout