为何一个Button使用setOnClickListener()方法会出错

 我来答
我区72toIV
推荐于2016-07-27 · TA获得超过167个赞
知道答主
回答量:105
采纳率:0%
帮助的人:144万
展开全部
这个问题很诡异。 声明了一个Button控件 private Button locationButton; 在布局文件中已经布局好了。 在activity里 locationButton=(Button)findViewById(R.id.location); 这一步不会出错,程序在模拟器上能运行,当然仅仅这一步,点击location按钮没有反应 但是到这一步locationButton.setOnClickListener(this);的时候程序就无法运行了 不知道与没有人遇见过这样的问题请求帮助啊。 ------解决方案--------------------无码无真相,发详细代码,以及LotCat里面的详细错误上来看看。 ------解决方案--------------------好吧,问题找到了,main.xml里面<Buttonandroid:name="@+id/location" android:layout_width="wrap_content" android:layout_height="80px" android:layout_toRightOf="@id/send" android:layout_alignTop="@id/send" android:text="位置"/>改为<Buttonandroid:id="@+id/location" android:layout_width="wrap_content" android:layout_height="80px" android:layout_toRightOf="@id/send" android:layout_alignTop="@id/send" android:text="位置"/> ------解决方案--------------------定义布局文件最后一个Button出错了,应该为android:id = "@+id/location" ------解决方案--------------------探讨引用:
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
糖糖寳寳
2015-09-08 · TA获得超过6.4万个赞
知道大有可为答主
回答量:1.8万
采纳率:92%
帮助的人:3942万
展开全部
  原因是在main.xml里面:
  <Button
  android:name="@+id/location"
  android:layout_width="wrap_content"
  android:layout_height="80px"
  android:layout_toRightOf="@id/send"
  android:layout_alignTop="@id/send"
  android:text="位置"/>
  改为
  <Button
  android:id="@+id/location"
  android:layout_width="wrap_content"
  android:layout_height="80px"
  android:layout_toRightOf="@id/send"
  android:layout_alignTop="@id/send"
  android:text="位置"/>
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式