标签:
导入工程错误:
1.问题:invalid project description
解决:选中导入工程的对话框的Copy projects into workspace复选框
编译错误:
1.问题:layout/xml报错incorrect line ending found carriage return without corresponding newline
解决:Ctrl+1或者format该文件
2.问题:No enclosing instance of type EpisodeList is accessible. Must qualify the allocation with an enclosing instance of type EpisodeList (e.g. x.new A() where x is an instance of EpisodeList).
解决:
Episode 是 EpisodeList 内部类
EpisodeList episodeList = new EpisodeList();
Episode episode = new Episode(); 编译出错
改为:
EpisodeList episodeList = new EpisodeList();
Episode episode = episodeList.new Episode();
运行时错误:
标签:
原文地址:http://www.cnblogs.com/liyuejiao/p/4251604.html