File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed
src/com/apkfuns/androidsourceviewer/widget Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ Android Studio 在线查看 Android 和 Java 指定版本源码插件
55* 支持查看 Android / Java 任意版本源码
66* 支持对比 Android / Java 任意两个版本源码差异
77* 支持 Android 官网文档查看和方法定位
8+ * 支持 Native 方法源码查看
89
910## Screenshot
1011![ ] ( ./screenshot/ss1.png ) <br >
@@ -15,11 +16,12 @@ Android Studio 在线查看 Android 和 Java 指定版本源码插件
1516
1617## Download
1718* Android Studio / Intellij IDEA 插件中心搜索 ` AndroidSourceViewer `   ;  ;
18- * 下载[ AndroidSourceViewer.jar ] ( ./downloads ) <br />
19+ * 下载[ AndroidSourceViewer.zip ] ( ./downloads ) <br />
1920
2021## Improve
2122* 不支持查找变量对象是内部类
2223* 本地源码不支持方法的定位
24+ *
2325* 还有很多其他尚未发现的缺陷和不足,欢迎提交 issue 和 PR
2426
2527## Recommend
@@ -28,8 +30,7 @@ Google 搜索 site:android.googlesource.com <关键词>
2830```
2931
3032## Thanks
31- * Android 源码来自 [ http://androidxref.com ] ( http://androidxref.com ) 、[ https://android.googlesource.com/ ] ( https://android.googlesource.com/ )
32- * Java 源码来自 [ http://grepcode.com/ ] ( http://grepcode.com/ )
33+ * Android 源码来自 [ http://androidxref.com ] ( http://androidxref.com ) 、[ https://www.androidos.net.cn/ ] ( https://www.androidos.net.cn/ )
3334
3435## License
3536<pre >
Original file line number Diff line number Diff line change 44import com .intellij .openapi .actionSystem .AnAction ;
55import com .intellij .openapi .actionSystem .AnActionEvent ;
66import com .intellij .openapi .actionSystem .DefaultActionGroup ;
7+ import com .intellij .openapi .project .DumbAware ;
78import com .intellij .openapi .project .Project ;
89import com .intellij .openapi .ui .popup .JBPopupFactory ;
910import com .intellij .openapi .ui .popup .ListPopup ;
@@ -73,7 +74,7 @@ public interface OnItemClickListener {
7374 /**
7475 * Android版本选择
7576 */
76- private static class VersionListItemAction extends AnAction {
77+ private static class VersionListItemAction extends AnAction implements DumbAware {
7778
7879 private int index ;
7980 private String value ;
You can’t perform that action at this time.
0 commit comments