图像按钮ID冲突?

时间:2013-02-19 19:18:11

标签: android imagebutton

我的应用程序在使用按钮时有效,但当我尝试使用图像按钮时,我得到一个运行时异常“无法启动活动....... ClassCastException:android:widget:button。

我在java文件中按ID设置按钮

BTN =(按钮)findViewById(R.id.button);

这是xml中的ImageButton

<ImageButton
    android:id="@+id/button"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centerHorizontal="true"
    android:layout_centerVertical="true"
    android:text="@string/hello_world" 
    android:adjustViewBounds="true"
    android:src="@drawable/ball"
android:scaleType="centerCrop"/>

我尝试清理项目但没有成功。我错过了什么?

帮助!

提前致谢

3 个答案:

答案 0 :(得分:0)

ImageButton 一个按钮。这意味着你不能把一个投射到另一个时期。

答案 1 :(得分:0)

ImageButton extends ImageView

感谢Android开发人员提供的这种清晰逻辑。

答案 2 :(得分:0)

正确的代码是:btn=(ImageButton)findViewById(R.id.button);