Intellij Idea外掛程式開發之建立項目層級的右鍵菜單,intellijidea
在使用Android Studio的過程中,發現內建的一些外掛程式無法滿足項目的實際需要,便著手自己開發對應的外掛程式。下面是我開發外掛程式過程中的一個記錄,會持續和大家分享。
分享一:建立Project右鍵菜單
1,按照項目嚮導一步一步建立一個Demo項目,就不再介紹了,可以參照這篇文章http://www.bkjia.com/article/135535.htm
2,建立Action,在plugin設定檔中你會看到
<action id="FirstAction" class="FirstAction" text="FirstAction" description="右鍵Action"> <add-to-group group-id="ProjectViewPopupMenu" anchor="after" relative-to-action="ReplaceInPath"/> </action>
3,運行後,IDE會另外開啟一個IDE(由一個類似Genymotion的容器包裹)。看效果是不是很熟悉,對,這就是常用Project右鍵菜單:
4,根據觸發的檔案類型動態控制Action的隱藏顯示
@Override public void update(AnActionEvent event) {//根據副檔名是否是jar,顯示隱藏此Action String extension = getFileExtension(event.getDataContext()); this.getTemplatePresentation().setEnabled(extension != null && "jar".equals(extension)); }
完整代碼:
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(); } }
以上就是本文的全部內容,希望對大家的學習有所協助,也希望大家多多支援幫客之家