How to generate links to the android Classes' reference in javadoc?

前端 未结 7 1203
渐次进展
渐次进展 2020-12-13 06:58

When I generate javadoc for my Android project in Eclipse, there are lots of warnings like

cannot find symbol
symbol  : class TextView

and

7条回答
  •  生来不讨喜
    2020-12-13 07:13

    If you have problems with the path to the SDK you can manually create a package-list file (or copy the one under $ANDROID_HOME/docs/reference/package-list) to your project.

    To use a relative path you shouldn't use the file:/ prefix. If you put the file in sub-directory/package-list the argument would be -linkoffline http://d.android.com/reference sub-directory

提交回复
热议问题