- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:app="http://schemas.android.com/apk/res-auto"
- xmlns:tools="http://schemas.android.com/tools"
- android:id="@+id/activity_main"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- tools:context="ray.ap.hw1071021.MainActivity"
- android:orientation="vertical">
- <ImageView
- android:layout_width="match_parent"
- android:layout_height="300dp"
- app:srcCompat="@drawable/img01"
- android:id="@+id/imageView"
- />
- <TableLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:stretchColumns="0,1" >
- <TableRow>
- <Button
- android:text="上一頁"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:id="@+id/button"
- android:onClick="previous" />
- <Button
- android:text="下一頁"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:id="@+id/button2"
- android:layout_alignTop="@+id/button"
- android:onClick="next" />
- </TableRow>
- </TableLayout>
- </LinearLayout>
複製代碼 |