Duderino9000
Duderino9000

Reputation: 2597

Open a project in Eclipse

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

Answers (3)

ja_chu
ja_chu

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

Steve
Steve

Reputation: 387

Looks like I had it checked not to show closed projects.

Upvotes: 1

mattjames
mattjames

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

Related Questions