尝试查看api文档时发现android-sdk-windows下没有docs文件夹,且Android SDK Manager的API 16版本下没有"Documentation for Android SDK"。


在最高版本的API level下是有"Documentation for Android SDK"的,下载后切换API level即可看到对应的api文档。

Android Studio 显示函数用法提示悬浮窗,解决fetching documentation问题


或者已经有了document,但是还是一直fetching documentation,可能是android studio配置文件没有配置好,此处所指的配置文件在:user/.AndroidStudio/config/options下的 jdk.table.xml文件。


[html] view plain copy
  1. <javadocPath>  
  2.     <root type="composite">  
  3.     //此处需要改成:$USER_HOME$/adt-bundle-windows-x86-20130917/sdk/docs/reference/  
  4.         <root type="simple" url="http://developer.android.com/reference/" />  
  5.     </root>  
  6. </javadocPath>  

相关文章:

  • 2021-06-28
  • 2022-12-23
  • 2021-10-01
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-05-22
  • 2021-09-02
猜你喜欢
  • 2021-04-17
  • 2021-07-06
  • 2022-12-23
  • 2021-08-28
  • 2021-11-09
  • 2021-05-27
相关资源
相似解决方案