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

时间:2022-06-03 11:27:22

在使用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