Skip to content

Commit 7f4a0e3

Browse files
committed
[1.2.0]版本优化
1 parent bca19ff commit 7f4a0e3

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff 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`&nbsp;&nbsp;
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>

src/com/apkfuns/androidsourceviewer/widget/PopListView.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
import com.intellij.openapi.actionSystem.AnAction;
55
import com.intellij.openapi.actionSystem.AnActionEvent;
66
import com.intellij.openapi.actionSystem.DefaultActionGroup;
7+
import com.intellij.openapi.project.DumbAware;
78
import com.intellij.openapi.project.Project;
89
import com.intellij.openapi.ui.popup.JBPopupFactory;
910
import 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;

0 commit comments

Comments
 (0)