解决:安装Android Studio 2.0后无法查看源码
Sources for Android API 23 Platfrom not found
(Android Studio 2.0)
AS2.2打开后出现该问题,无法查看源码。点击下载后点击Refresh无反应。
产生原因
AS 2.0中配置文件jdk.table.xml中缺少对应API源码路径
解决方法
打开配置文件jdk.table.xml
Windows下默认路径: C:\Users{USER_NAME}.AndroidStudio2.0\config\options\jdk.table.xml Linix下默认路径: ~/Library/Preferences/AndroidStudio2.0/options/jdk.table.xml
找到<sourcePath>标签,之前是这个样子
<
sourcePath>
<root
type=
"composite"/>
</
sourcePath>
改成如下:
<
sourcePath>
<root
type=
"composite">
<root
type=
"simple" url=
"file://$USER_HOME$/Library/Android/sdk/sources/android-23" />
</root>
</
sourcePath>
保存文件后重启AndroidStudio,就可以查看源码了。