简体   繁体   中英

How to set up external documentation in Android Studio?

I would like to make Shift + F1 (show external documentation) work. I am aware of this question: How can I make IntelliJ/Android Studio open Android docs when clicking F1 on function?

But my project structure is entierly different (ie. Libraries section is missing!)

项目结构

How can I set up external documentation location in Android Studio 1.1.0?
Ie. for Android Support Library, Google Play Services, etc.

EDIT: The external doc for the Android SDK is already working, but I can't for example change it to an online version, and I can't set it for Play Services and Support Library at all

Repeating the comment from above as an answer, as requested:

Unfortunately, Android Studio has manipulated the IntelliJ settings IDE, so you cannot provide an external link in the UI to documentation. Normally the module settings (or Project Structure) would have the ability to look at all libraries and configure where to find external docs. If you are feeling brave, you could try manually by going to ~/.idea/libraries and edit play_services_x_y_z.xml (x, y and z are the version numbers you are using.) Look for the <JAVADOC /> tag. Modify it to be <JAVADOC> and add a sub tag <root url="put_your_external_url_here" /> then close the javadoc tag.

You should be able to create a custom gradle task to inject the appropriate XML if the file ever changes so it prevents issues on gradle sync. But, it would be some work. It's really a function of how IntelliJ handles maven dependencies from within Gradle and the setup of its projects rather than it being gradle's fault, so I don't think there's any special gradle setting to make it work.

Go into your Android SDK (Tools -> Android -> SDK Manager) and make sure the "Documentation for Android SDK" is installed for the target version of Android you are building against (see the Android 5.1 (API 22) section):

Android SDK Manager

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM