All we require is flipping(like in iPhone) between 2 activities in
android.Nothing to do with animation.
Here is our code:

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 xmlns:android="http://schemas.android.com/apk/res/
android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="@drawable/splash">
</AbsoluteLayout>


Menu.java

public class Menu extends Activity{

        /** Called when the activity is first created. */

        public void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);

            setContentView(R.layout.menu);


        }
    }

Menu.xml

<?xml version="1.0" encoding="utf-8"?>
<AbsoluteLayout xmlns:android="http://schemas.android.com/apk/res/
android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="@drawable/menu">
</AbsoluteLayout>

On Apr 20, 12:33 am, MobDev <developm...@mobilaria.com> wrote:
> Do you mean ascreentransition Animation ?
>
> On 20 apr, 09:17, Maxood <maqs...@salsoft.net> wrote:
>
>
>
>
>
> > How can i make adynamicflippingscreen(likethat ofiPhone) in
> >Android
>
> > I am parsing data through the web service. I want theflipping
> > horizontally rather than vertically. Here is a tutorial where
> > ViewFlipper is used but it is for static data.
>
> > Suppose we have 2 activities with their respective xml files: Splash
> > Activity ->splash.xml Menu activity ->menu.xml Now how we can flip
> > between these 2 activities? That is from splash to menu and vice
> > versa.
>
> > Maqsood
>
> > --
> > You received this message because you are subscribed to the Google
> > Groups "AndroidDevelopers" group.
> > To post to this group, send email toandroid-develop...@googlegroups.com
> > To unsubscribe from this group, send email to
> >android-developers+unsubscr...@googlegroups.com
> > For more options, visit this group 
> > athttp://groups.google.com/group/android-developers?hl=en
>
> --
> You received this message because you are subscribed to the Google
> Groups "AndroidDevelopers" group.
> To post to this group, send email toandroid-develop...@googlegroups.com
> To unsubscribe from this group, send email 
> toandroid-developers+unsubscr...@googlegroups.com
> For more options, visit this group 
> athttp://groups.google.com/group/android-developers?hl=en

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to