不幸的是myapp已经停止了(FB的图像按钮)

时间:2016-03-24 14:28:09

标签: android facebook

error
xml layout
当我直接运行应用程序时“请不要让应用程序停止”,请帮助我。在按钮更改为ImageButton之前,其应用程序可以正常运行。

1 个答案:

答案 0 :(得分:1)

您需要将活动中Button的引用更改为ImageButton。

我假设:

Button btn=(Button)findViewById(R.id.button);

将其更改为:

ImageButton btn=(ImageButton)findViewById(R.id.button);