今天下载一个AndroidDemo使用eclipse导入项目的时候提示:No projects are found to import。
看了项目的目录跟eclipse中创建的项目目录是对应的。唯一缺的文件是.project。
然后从其他项目中打开看里边是
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>seekbar</name>/**这里可以修改项目名*/
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>com.android.ide.eclipse.adt.ResourceManagerBuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>com.android.ide.eclipse.adt.PreCompilerBuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>com.android.ide.eclipse.adt.ApkBuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>com.android.ide.eclipse.adt.AndroidNature</nature>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
</projectDescription>
copy一份修改完项目名放到自己的项目下,然后再导入项目成功了!