假设我有以下Android代码行:
MyClass myClass = (MyClass) intent.getExtras().getSerializable("SomeKey");
当光标标记为“getSerializable”时,如何让IntelliJ / Android Studio打开浏览器并在点击F1时导航到以下URI?
http://developer.android.com/reference/android/os/Bundle.html#getSerializable(java.lang.String)
这可能有一个插件吗?
答案 0 :(得分:5)
打开Project Structure
窗口然后转到Libraries
并指向android jar:
现在按绿色加号:
选择Specify Documentation URL...
选项:
输入Android SDK API网址:
完全按OK
,以便再次进入编辑器。现在将插入符号放在方法上并按 Shift + F1 :
浏览器将打开并导航到正确的页面。
答案 1 :(得分:1)
在我的Android Studio 1.5.1安装中,一旦我从Structure View
选择我的模块,Project View
就会列出这些库,并从下拉列表中选择Android
,如下所示这个链接:
Click >> Project View and Project Structure View
现在右键添加要添加URL的库并选择Library Properties
。将弹出一个窗口,其中包含一个按钮Specify Documentation URL
,您可以在此处粘贴您的网址。
Click >> Library Properties windows and Documentation URL popup
现在您可以转到代码编辑器,选择要查看其文档的任何元素,然后按Shift+F1
,将打开浏览器并显示相应的URL。