Intellij Idea外掛程式開發之建立項目層級的右鍵菜單,intellijidea

來源:互聯網
上載者:User

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();  } } 

以上就是本文的全部內容,希望對大家的學習有所協助,也希望大家多多支援幫客之家

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.