例如,这是Frag_one.java。我有2张图片,当我点击image1时,它会显示image1和此片段中的一些描述。
任何人都可以提供帮助? THX
这是XML代码
<?xml version="1.0" encoding="utf-8"?>
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<TableRow
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:layout_margin="20dp">
<ImageView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:id="@+id/animal0"
android:src="@drawable/sample_0"
android:layout_weight="1"
android:onClick="onclick_animal0" />
</TableRow>
<TableRow
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:layout_margin="20dp">
<ImageView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:id="@+id/animal1"
android:src="@drawable/sample_1"
android:layout_weight="1" />
</TableRow>
</TableLayout>