├── .gitignore ├── .idea ├── compiler.xml ├── copyright │ └── profiles_settings.xml ├── dictionaries │ └── pc.xml ├── markdown-exported-files.xml ├── markdown-navigator.xml ├── markdown-navigator │ └── profiles_settings.xml ├── misc.xml ├── modules.xml ├── uiDesigner.xml └── vcs.xml ├── GenerateButterKnife.gif ├── GenerateButterKnife1.gif ├── GenerateFindViewById.gif ├── GenerateFindViewById.iml ├── GenerateFindViewById.jar ├── README.md ├── resources └── META-INF │ └── plugin.xml └── src ├── EditorExt.kt ├── Ext.kt ├── ListExt.kt ├── ProjectExt.kt ├── PsiClass.kt ├── PsiFileExt.kt ├── StringExt.kt ├── actions ├── ButterKnifeAction.kt └── FindViewByIdAction.kt ├── constant └── Constant.kt ├── entitys ├── Element.kt └── IdBean.kt ├── utils ├── CreateMethodCreator.kt └── GenerateCreator.kt └── views ├── ButterKnifeDialog.kt ├── FindViewByIdDialog.kt └── GenerateDialog.kt /.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /out 3 | -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzailfm/GenerateFindViewById/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzailfm/GenerateFindViewById/HEAD/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/dictionaries/pc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzailfm/GenerateFindViewById/HEAD/.idea/dictionaries/pc.xml -------------------------------------------------------------------------------- /.idea/markdown-exported-files.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzailfm/GenerateFindViewById/HEAD/.idea/markdown-exported-files.xml -------------------------------------------------------------------------------- /.idea/markdown-navigator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzailfm/GenerateFindViewById/HEAD/.idea/markdown-navigator.xml -------------------------------------------------------------------------------- /.idea/markdown-navigator/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzailfm/GenerateFindViewById/HEAD/.idea/markdown-navigator/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzailfm/GenerateFindViewById/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzailfm/GenerateFindViewById/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/uiDesigner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzailfm/GenerateFindViewById/HEAD/.idea/uiDesigner.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzailfm/GenerateFindViewById/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /GenerateButterKnife.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzailfm/GenerateFindViewById/HEAD/GenerateButterKnife.gif -------------------------------------------------------------------------------- /GenerateButterKnife1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzailfm/GenerateFindViewById/HEAD/GenerateButterKnife1.gif -------------------------------------------------------------------------------- /GenerateFindViewById.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzailfm/GenerateFindViewById/HEAD/GenerateFindViewById.gif -------------------------------------------------------------------------------- /GenerateFindViewById.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzailfm/GenerateFindViewById/HEAD/GenerateFindViewById.iml -------------------------------------------------------------------------------- /GenerateFindViewById.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzailfm/GenerateFindViewById/HEAD/GenerateFindViewById.jar -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzailfm/GenerateFindViewById/HEAD/README.md -------------------------------------------------------------------------------- /resources/META-INF/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzailfm/GenerateFindViewById/HEAD/resources/META-INF/plugin.xml -------------------------------------------------------------------------------- /src/EditorExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzailfm/GenerateFindViewById/HEAD/src/EditorExt.kt -------------------------------------------------------------------------------- /src/Ext.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzailfm/GenerateFindViewById/HEAD/src/Ext.kt -------------------------------------------------------------------------------- /src/ListExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzailfm/GenerateFindViewById/HEAD/src/ListExt.kt -------------------------------------------------------------------------------- /src/ProjectExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzailfm/GenerateFindViewById/HEAD/src/ProjectExt.kt -------------------------------------------------------------------------------- /src/PsiClass.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzailfm/GenerateFindViewById/HEAD/src/PsiClass.kt -------------------------------------------------------------------------------- /src/PsiFileExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzailfm/GenerateFindViewById/HEAD/src/PsiFileExt.kt -------------------------------------------------------------------------------- /src/StringExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzailfm/GenerateFindViewById/HEAD/src/StringExt.kt -------------------------------------------------------------------------------- /src/actions/ButterKnifeAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzailfm/GenerateFindViewById/HEAD/src/actions/ButterKnifeAction.kt -------------------------------------------------------------------------------- /src/actions/FindViewByIdAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzailfm/GenerateFindViewById/HEAD/src/actions/FindViewByIdAction.kt -------------------------------------------------------------------------------- /src/constant/Constant.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzailfm/GenerateFindViewById/HEAD/src/constant/Constant.kt -------------------------------------------------------------------------------- /src/entitys/Element.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzailfm/GenerateFindViewById/HEAD/src/entitys/Element.kt -------------------------------------------------------------------------------- /src/entitys/IdBean.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzailfm/GenerateFindViewById/HEAD/src/entitys/IdBean.kt -------------------------------------------------------------------------------- /src/utils/CreateMethodCreator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzailfm/GenerateFindViewById/HEAD/src/utils/CreateMethodCreator.kt -------------------------------------------------------------------------------- /src/utils/GenerateCreator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzailfm/GenerateFindViewById/HEAD/src/utils/GenerateCreator.kt -------------------------------------------------------------------------------- /src/views/ButterKnifeDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzailfm/GenerateFindViewById/HEAD/src/views/ButterKnifeDialog.kt -------------------------------------------------------------------------------- /src/views/FindViewByIdDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzailfm/GenerateFindViewById/HEAD/src/views/FindViewByIdDialog.kt -------------------------------------------------------------------------------- /src/views/GenerateDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzailfm/GenerateFindViewById/HEAD/src/views/GenerateDialog.kt --------------------------------------------------------------------------------