Вы можете определить все два свойства макетов внутри одного макета в ViewFlipper
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/lah"
>
<ViewFlipper
android:id="@+id/flipper"
android:layout_height="fill_parent"
android:layout_width="fill_parent"
>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/first_layout">
.
.
.
</LinearLayout>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/second_layout">
.
.
.
</LinearLayout>
</ViewFlipper
</LinearLayout>
Затем в вашей Java-программе создайте объект ViewFlipper.
ViewFlipper vf = (ViewFlipper) findViewById( R.id.flipper);
И звоните
vf.showNext();
Вы также можете применить анимацию, которая, кажется, переключает макеты справа налево. Спасибо ...
vf.setInAnimation(AnimationUtils.loadAnimation( getApplicationContext(), R.anim.right_in ));
vf.setOutAnimation( AnimationUtils.loadAnimation( getApplicationContext(), R.anim.left_out ));
vf.showNext();