私のレイアウトでは「以下のように」。フリッパーが完了したらすぐに別のアクティビティを開始し、新しいアクティビティで同じビューの状態を継続したいと考えています。基本的に、レイアウトの一部を静的に保ち、他の部分をアニメーション化して独自のアクティビティを持たせたいと考えています。
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/LinearLayout1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:minHeight="50dp"
android:orientation="vertical"
tools:context=".MainActivity" >
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<ImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/logo" />
</RelativeLayout>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<ViewFlipper
android:id="@+id/viewFlipper1"
android:layout_width="wrap_content"
android:layout_height="fill_parent" >
<include
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_gravity="center"
layout="@layout/first" />
<include
android:layout_width="wrap_content"
android:layout_height="fill_parent"
layout="@layout/country" />
</ViewFlipper>
</RelativeLayout>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content" >
</RelativeLayout>