Tianshil
- Total activity 22
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 7
-
Created How to show a pop up at a specific location of the code editor?
AnsweredI'm working on a plugin for Android Studio. One feature I want to implement is when the user takes some action for the first time (e.g., apply a quickfix), the plugin can show a pop up at the speci... -
Created Android Studio plugin modifying the XML layout editor
AnsweredI want to implement an Android Studio plugin with the following features, can anyone give me some pointers about how to achieve it? (If it's not feasible to implement with the open APIs, what would... -
Created How to make the error detected by a local inspection tool to prevent compilation?
I have built a local inspection tool that can detect some issues and mark then as error. I hope if such error exists and is detected, the project will not be allowed to compile, just like other syn... -
Created Local inspection invoked in file A, and error registered in file B. Is this possible?
Hi, My plugin has a local inspection tool that can find some issues related to code in other files, and may register the issue on PsiElement in other files. However, I got the following error when ... -
Created Is it possible to create a new problem highlight type? (extend the enum class ProblemHighlightType)
Hi! I'm currently working on a plugin for Android Studio. We define a new type of issue and we hope they can be labeled with a specific type of highlight (instead of the current highlight schemes f... -
Created How can I re-format the code after adding a new statement in quick fix?
Hello, I'm making a plugin for Java. In my plugin, there is a quickfix that can add a statement before another statement. But after I call the "addBefore" API, the new statement will be added to th... -
Created Code inspection related with multiple files/multiple places in the same file
I'm working on a plugin for Android Studio and I want to implement a code inspection that will register problems based on the status of multiple files/multiple places in the same file. For example,...