Search code examples
androideclipseadt

Show Android SDK Help in Eclipse IDE


I am used to C# develop in Microsoft Visual Studio IDE. Now I am trying to develop an Android app.

It is possible in Eclipse to show Android SDK help/information based on the context (e.g. placement of cursor) when I press F1 key like in Visual Studio?


Solution

    1. ctrl+spacebar will tell you different options you have when you are writing code.

    2. When you are having error, just hovering the cursor over the red underlined characters will show you options, or you can place your cursor on words and press F2 and it will start showing possible options.

    3. The icons on left side will tell you about errors or warnings in you code.

    Or you can read through this nice tutorial for more shortcuts.

    And also hovering over any method names or anything shows a dialog box, which contains description and links. Clicking on any link will open complete help in eclipse itself.