当前位置:   article > 正文

IntelliJ idea插件开发(一)_idea弹出框开发添加图片

idea弹出框开发添加图片

官方参考文档

1.创建新工程点击plantform plugin(什么也不用选择),并选择工程名和工程目录


2.finish完成创建

3.创建action。在scr下面创建包名,我的为com.dyc.test.然后添加如下action类。

  1. public class TextBoxes extends AnAction {
  2. // If you register the action from Java code, this constructor is used to set the menu item name
  3. // (optionally, you can specify the menu description and an icon to display next to the menu item).
  4. // You can omit this constructor when registering the action in the plugin.xml file.
  5. public TextBoxes() {
  6. // Set the menu item name.
  7. super("Text _Boxes");
  8. // Set the menu item name, description and icon.
  9. // super("Text _Boxes","Item description",IconLoader.getIcon("/Mypackage/icon.png"));
  10. }
  11. public void actionPerformed(AnActionEvent event) {
  12. Project project = event.getData(PlatformDataKeys.PROJECT);
  13. String txt= Messages.showInputDialog(project, "What is your name?", "Input your name", Messages.getQuestionIcon());
  14. Messages.showMessageDialog(project, "Hello, " + txt + "!\n I am glad to see you.", "Information", Messages.getInformationIcon());
  15. }
  16. }
4.注册action,注册位置:工程目录->meta-inf->plugin.xml,选择与action同级的地方copy这段代码

  1. <actions>
  2. <!--
  3. group id="MyPlugin.SampleMenu" text="_Sample Menu"
  4. text是显示在工具栏的那个标题
  5. -->
  6. <group id="MyPlugin.SampleMenu" text="_Sample Menu" description="Sample menu">
  7. <!--
  8. <add-to-group group-id="MainMenu" anchor="last"
  9. group-id指的是子action要加入的gruop类型,这个是api自带的名称,有很多种,MainMenu只是其中一种
  10. anchor 指的是子菜单显示位置
  11. 一个action,表示一个选项,class是对应的类名,text是要展示的子菜单名字
  12. -->
  13. <add-to-group group-id="MainMenu" anchor="last" />
  14. <action id="Myplugin.Textboxes" class="com.dyc.test.TextBoxes" text="Text _Boxes" description="A test menu item" />
  15. </group>
  16. </actions>

5.点击运行,可以看到工具栏多了一个选项。其实是执行了actionPerformed.
6.action也可以通过new->action的方式进行创建


7.打包插件

  a.build->buildproject 

  b.build->prepare plugin modle for"xxxxxx" .....  

  

8.使用

  在idea,或android studio,或其他idea安装目录下面,进入plugin文件夹,然后 创建文件夹myplugin,进入myplugin,创建lib,将上面生成的jar包放入lib里面,重启idea就可以使用插件包了

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/680758
推荐阅读
相关标签
  

闽ICP备14008679号