标签: android facebook
error xml layout 当我直接运行应用程序时“请不要让应用程序停止”,请帮助我。在按钮更改为ImageButton之前,其应用程序可以正常运行。
答案 0 :(得分:1)
您需要将活动中Button的引用更改为ImageButton。
我假设:
Button btn=(Button)findViewById(R.id.button);
将其更改为:
ImageButton btn=(ImageButton)findViewById(R.id.button);