Javadoc issues

When I launch a new Android project and use my own methods and components for Android, as well as java methods and components, I cannot read their description because javadoc sent me this message:

Note. This item has no connected source, and Javadoc cannot be found in the attached Javadoc.

I have the latest Android documentation in my android-sdk folder, and javadoc works when I work with standard java projects, but not with android project. Do you have any idea why this is happening and how can I fix this problem?

+6
android eclipse
source share
3 answers

I found a solution myself. In this situation, you need to fix the path of your javadoc in Project-> Properties-> Java Build path-> AndroidX.X (where XX is the platform version) β†’ android.jar-> Javadoc location .

The docs \ reference location field should indicate

+9
source share

If you use Eclipse (you should mention the IDE), you should get the β€œattach source” button when you receive this message. Just click this button and point it to the document directory on your computer or the Internet, and you will be well off.

0
source share

Please check the following URL and try to follow the instructions provided

http://stuffthathappens.com/blog/2008/11/01/browsing-android-source-in-eclipse/

0
source share

All Articles