Android ImageButton错误

时间:2013-02-01 21:42:48

标签: android casting imagebutton

当我尝试在我的项目中使用ImageButton时,我收到此错误:

java.lang.ClassCastException: android.widget.ImageButton cannot be cast to android.widget.Button

这是图像按钮声明的地方:

<ImageButton
        android:id="@+id/durdur"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_alignParentLeft="true"
        android:src="@drawable/stop" />

    <ImageButton
        android:id="@+id/devam"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_alignParentRight="true"
        android:src="@drawable/play" />

这是我初始化这些图像按钮的代码:

ImageButton b4=(ImageButton) findViewById(R.id.devam);
ImageButton b5=(ImageButton) findViewById(R.id.durdur);

0 个答案:

没有答案