I integrated the project with android-v4jar support only in the Android Dependencies part in the package view. I have a class
public class CountriesFragment extends ListFragment {...}
and import
import android.support.v4.app.ListFragment;
up higher
I created the android-support-v4.jar.properties file in the libs folder. It contains the lines:
doc=c:\\[path-to-android-sdk]\\docs\\reference src=C:\\[path-to-android-sdk]\\extras\\android\\support\\v4\\src
Presumably you will have to switch to an unexperienced slash if you do not use Windows.
Then right click on the project, select update, then you will get javadoc support. You really don't need a doc entry - the src entry already contains javadocs.
NickT Sep 27 '12 at 20:17 2012-09-27 20:17
source share