在我的布局中“如下”。我想在鳍状肢完成后立即开始另一项活动,并在新活动中继续相同的状态。 基本上我想保持布局的某些部分是静态的,而其他部分是动画的并且有自己的活动。
<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>