0

您可以对您在代码中创建的位图图片进行 onClick,还是需要将我的“僵尸”设置为 texview 等的背景才能执行点击操作?

4

1 回答 1

1

你需要ImageButton这样的

<ImageButton
        android:layout_height="wrap_content"
        android:layout_width="wrap_content"
        android:layout_gravity="left"
        android:onClick="functionToCall"
        android:src="@drawable/to_top_button"
            />

然后定义函数

public void functionToCall(View v) {
    ...
}
于 2012-05-05T18:36:40.723 回答