Android如何在片段中单击时将Imageview更改为另一个Imageview?

时间:2016-07-17 08:18:58

标签: android android-fragments

例如,这是Frag_one.java。我有2张图片,当我点击image1时,它会显示image1和此片段中的一些描述。

enter image description here

任何人都可以提供帮助? 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>

0 个答案:

没有答案