Android Eclipse导入源码时对自己新增的class文件提示"XXX cannot be resolved to a type"的解决办法

Eclipse导入源码时对自己新增的class文件提示"XXX cannot be resolved to a type"错误提示,且在Eclipse中点击该class对象时无法跳转到该类,解决办法:


android/.classpath(拷贝自android/development/ide/eclipse/.classpath)

文件中加入自己新增的文件路径即可。


如自己新增的类文件放入frameworks/base/packages/SystemUI/systemuixxx/src下面的,则在.classpath文件中加入如下代码即可


    <classpathentry kind="src" path="frameworks/base/packages/SettingsProvider/src"/>
    <classpathentry kind="src" path="frameworks/base/packages/SystemUI/src"/>
    <classpathentry kind="src" path="frameworks/base/packages/SystemUI/systemuixxx/src"/>



最后按“F5”刷新一下已导入的工程。

posted @ 2017-02-27 15:55  行走的思想  阅读(17)  评论(0编辑  收藏  举报  来源