1

我是一个新的 android 开发人员,我ImageButton在我的应用程序中使用 a 并在后台添加了一些 Image。一切看起来都不错,但是当我想在某个类中使用它并使用它下面的代码时;将强制关闭。

Help_Button = (Button) findViewById(R.id.Help_Button);
4

2 回答 2

4

发布您的布局 xml 会有很大帮助,但我敢打赌,您正在ClassCastException尝试将 aImageButton转换为Button. 试试这个。-

ImageButton helpButton = (ImageButton) findViewById(R.id.Help_Button);
于 2013-10-11T19:44:27.193 回答
0

Button并且ImageButton彼此不同。您必须使用ImageButton而不是Button.

于 2013-10-11T19:48:44.357 回答