<RelativeLayout xmlns:android=
"http://schemas.android.com/apk/res/android"
xmlns:tools=
"http://schemas.android.com/tools"
android:layout_width=
"match_parent"
android:layout_height=
"match_parent"
tools:context=
".MainActivity"
>
<ViewFlipper
android:id=
"@+id/viewFlipper1"
android:layout_width=
"match_parent"
android:layout_height=
"match_parent"
android:flipInterval=
"3000"
android:inAnimation=
"@anim/push_down_in_no_alpha"
android:outAnimation=
"@anim/push_down_in_no_alpha"
android:layout_alignParentLeft=
"true"
android:layout_alignParentTop=
"true"
>
<ImageView
android:id=
"@+id/imageView1"
android:layout_width=
"match_parent"
android:layout_height=
"match_parent"
android:scaleType=
"fitXY"
android:src=
"@drawable/photo1"
/>
<ImageView
android:id=
"@+id/imageView2"
android:layout_width=
"match_parent"
android:layout_height=
"match_parent"
android:scaleType=
"fitXY"
android:src=
"@drawable/photo2"
/>
<ImageView
android:id=
"@+id/imageView3"
android:layout_width=
"match_parent"
android:layout_height=
"match_parent"
android:scaleType=
"fitXY"
android:src=
"@drawable/photo3"
/>
</ViewFlipper>
</RelativeLayout>