首页 > 代码库 > android修改布局后遇到 Incorrect line ending: found carriage return (\r) without corresponding newline (\n) 错误

android修改布局后遇到 Incorrect line ending: found carriage return (\r) without corresponding newline (\n) 错误

遇到这个问题,只需要在eclipse中的Project选项菜单中选择clean,选中当前的项目。clean之后就不会报错了。

 

如图:

Clean will discard all build problems and built states。

The projects will be rebuilt from scratch。

大致意思就是Clean之后 ADT会清除之前编译产生的文件和保存的状态。

重新编译就好了。

 

总之遇到特别奇怪的bug时,不妨clean之后,重新编译一次,也许就解决了。