Has anyone had any luck getting IntelliJ to recognize and display the android java docs?
相关问题
- How can I create this custom Bottom Navigation on
- Bottom Navigation View gets Shrink Down
- How to make that the snackbar action button be sho
- Listening to outgoing sms not working android
- How to create Circular view on android wear?
相关文章
- android开发 怎么把图片放入drawable的文件夹下
- android上如何获取/storage/emulated/下的文件列表
- androidStudio有个箭头不认识
- SQLite不能创建表
- Windows - Android SDK manager not listing any plat
- In IntelliJ IDEA, how can I create a key binding t
- Animate Recycler View grid when number of columns
- Why is the app closing suddenly without showing an
It works out of the box since
Android SDK
configuration in IDEA automatically adds JavaDoc directory intoDocumentation Paths
.Make sure you've downloaded the SDK completely including the documentation using the SDK Manager. On my system they are located under
SDK_ROOT/docs/reference
and this directory is automatically configured in IDEA Android SDK.Make sure that the directory containing the documentation is in Documentation Paths. For this, do the following:
Add the following path under the Documentation Paths tab:
path_to_android_sdk/docs/reference
If you have not downloaded the documentation in SDK Manager, please do so before performing this procedure.