码迷,mamicode.com
首页 > 其他好文 > 详细

在布局文件/layout中加的id,在R文件中却没有显示?

时间:2015-05-24 15:26:39      阅读:684      评论:0      收藏:0      [点我收藏+]

标签:

新建android工程,在/layout/activity_main.xml文件中,新建了一个Button,

<Button
        android:id="@+id/person"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/person" />

但是,该ID资源person却没有在MainActivity中调用出来,

person=(Button)this.findViewById(R.id.person);

查看/R.java文件也没有找到对应的ID资源;

此时,解决办法是:

Project->Build All后 自动生成。

在布局文件/layout中加的id,在R文件中却没有显示?

标签:

原文地址:http://www.cnblogs.com/lonsine/p/4525841.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!