Tag: file templates
-
How to create a group of File Templates in Android Studio – Part 3
Update – 24 May 2021: The solution described in this blog post is now outdated – yay! See the official solution from IntelliJ. This works in Android Studio Artic Fox and above – https://www.jetbrains.com/help/idea/templates-with-multiple-files.html For historical purposes – I’ve left the original post below. ————————– In the previous two posts, we looked at creating custom…
-
How to create your own Live Templates in Android Studio/IntelliJ – Part 2
In the last post we looked at how to create a File Template in Android Studio. In this post we will look at Live Templates and how to make your own. Live templates are “frequently-used or custom code constructs that you can insert into your source code file quickly, efficiently and accurately.”
-
How to make your own File Templates in Android Studio – Part 1
I have recently discovered something which is currently making my life easier at the moment: Custom file templates. What is a file template? A file template is a source file that already contains some code to get you started. In this example, we are going to look at creating a file template for a RecyclerView adapter implementation which is…