Reputation: 2597
I'm completely new to Eclipse/Java/Android programming, so this might sound like a dumb question, but I can't open the project I was working on last week... it's the "HelloWorld" project.
I'm very familiar with Visual Studio so I've been looking for something like a project file/solution or a way to open a directory in Eclipse, but I'm having no luck and am completely lost.
Any help is appreciated!
Upvotes: 4
Views: 14341
Reputation: 29
Eclipse will look into the .project file in your project directory and see the original project name, which may be the same as another project. This can happen if you build a new project using some old code.
Upvotes: 1
Reputation: 1676
Can you try File->Import and then choose Existing Projects into Workspace and then select the directory with your HelloWorld project?
Upvotes: 8