gpt4 book ai didi

Intellij Idea插件开发之创建项目层级的右键菜单

转载 作者:qq735679552 更新时间:2022-09-27 22:32:09 24 4
gpt4 key购买 nike

CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.

这篇CFSDN的博客文章Intellij Idea插件开发之创建项目层级的右键菜单由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.

在使用android studio的过程中,发现自带的一些插件无法满足项目的实际需要,便着手自己开发对应的插件。下面是我开发插件过程中的一个记录,会持续和大家分享.

分享一:创建project右键菜单 。

1,按照项目向导一步一步创建一个demo项目,就不再介绍了,可以参照这篇文章 http://www.zzvips.com/article/153905.html 。

2,创建action,在plugin配置文件中你会看到 。

?
1
2
3
<action id= "firstaction" class = "firstaction" text= "firstaction" description= "右键action" >
   <add-to-group group-id= "projectviewpopupmenu" anchor= "after" relative-to-action= "replaceinpath" />
  </action>

Intellij Idea插件开发之创建项目层级的右键菜单

3,运行后,ide会另外开启一个ide(由一个类似genymotion的容器包裹)。看效果是不是很熟悉,对,这就是常用project右键菜单:

Intellij Idea插件开发之创建项目层级的右键菜单

4,根据触发的文件类型动态控制action的隐藏显示 。

?
1
2
3
4
5
@override
public void update(anactionevent event) { //根据扩展名是否是jar,显示隐藏此action
  string extension = getfileextension(event.getdatacontext());
  this .gettemplatepresentation().setenabled(extension != null && "jar" .equals(extension));
}

完整代码:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import com.intellij.openapi.actionsystem.*;
import com.intellij.openapi.project.project;
import com.intellij.openapi.ui.messages;
import com.intellij.openapi.vfs.virtualfile;
 
/**
  * created by abc on 16/8/17.
  */
public class firstaction extends anaction {
 
  private project mproject;
 
  @override
  public void actionperformed(anactionevent event) {
   mproject = event.getdata(platformdatakeys.project);
   datacontext datacontext = event.getdatacontext();
   if ( "jar" .equals(getfileextension(datacontext))) { //根据扩展名判定是否进行下面的处理
    //获取选中的文件
    virtualfile file = datakeys.virtual_file.getdata(event.getdatacontext());
    if (file != null ) {
     messages.showmessagedialog(mproject, file.getname(), "select file" , messages.getinformationicon());
    }
   }
  }
 
  @override
  public void update(anactionevent event) {
   //在action显示之前,根据选中文件扩展名判定是否显示此action
   string extension = getfileextension(event.getdatacontext());
   this .gettemplatepresentation().setenabled(extension != null && "jar" .equals(extension));
  }
 
  public static string getfileextension(datacontext datacontext) {
   virtualfile file = datakeys.virtual_file.getdata(datacontext);
   return file == null ? null : file.getextension();
  }
}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我 。

原文链接:http://blog.csdn.net/zhangbuzhangbu/article/details/52227403 。

最后此篇关于Intellij Idea插件开发之创建项目层级的右键菜单的文章就讲到这里了,如果你想了解更多关于Intellij Idea插件开发之创建项目层级的右键菜单的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com