-
<?xml version="1.0" encoding="utf-8"?>
-
<RelativeLayout
-
xmlns:android="http://schemas.android.com/apk/res/android"
-
android:layout_width="match_parent"
-
android:layout_height="match_parent">
-
<ViewFlipper
-
android:id="@+id/details"
-
android:layout_width="match_parent"
-
android:layout_height="match_parent"
-
android:flipInterval="1000">
-
<ImageView
-
android:src="@drawable/java"
-
android:layout_width="match_parent"
-
android:layout_height="wrap_content">
-
</ImageView>
-
<ImageView
-
android:src="@drawable/android"
-
android:layout_width="match_parent"
-
android:layout_height="wrap_content">
-
</ImageView>
-
<ImageView
-
android:src="@drawable/javaee"
-
android:layout_width="match_parent"
-
android:layout_height="wrap_content">
-
</ImageView>
-
</ViewFlipper>
-
<Button
-
android:text="<"
-
android:onClick="prev"
-
android:layout_width="wrap_content"
-
android:layout_height="wrap_content"
-
android:layout_alignParentBottom="true"
-
android:layout_alignParentLeft="true"/>
-
<Button
-
android:id="@+id/autoplay"
-
android:layout_width="wrap_content"
-
android:layout_height="wrap_content"
-
android:layout_alignParentBottom="true"
-
android:layout_centerInParent="true"
-
android:onClick="auto"
-
android:text="自动播放"/>
-
<Button
-
android:text=">"
-
android:onClick="next"
-
android:layout_width="wrap_content"
-
android:layout_height="wrap_content"
-
android:layout_alignParentBottom="true"
-
android:layout_alignParentRight="true"/>
-
</RelativeLayout>