Creating an Android Studio plugin with a user interface

I'm surprised I couldn't find any posts on this issue. I want to create a plugin that works like a sidebar control in Android Studio, similar to how the Fabric dependency works (Illustrated below). Where can I find resources on how to get started on this and are there any sample projects on Github?

Tasks:

  • Allow developers to integrate library as gradle dependency
  • Sidebar display User interface for developer interaction with

I have mentioned the official IntelliJ Docs , but I have not been able to find any information about UI based plugin development.

Questions:

1) Are there any development kits for building a user interface?

2) Plugin development documentation

enter image description here

+3


source to share


1 answer


What you want to create is the Toolbox displayed on the right, doc here .

About the developer kits, GUI Designer

this is a tool that you can use. In fact, the official tool window example uses it from https://github.com/JetBrains/intellij-sdk-docs/blob/master/code_samples/tool_window/src/myToolWindow/MyToolWindow.form .

But if you want to achieve the same effect, for example Fabric

, on the page of the license , use



for rendering css and html effects in Java.

0


source







All Articles