How to generate javadoc comments in Android Studio

qinxianyuzou picture qinxianyuzou · Jun 25, 2013 · Viewed 151.8k times · Source

Can I use shortcut keys in Android studio to generate javadoc comments?

If not, what is the easiest way to generate javadoc comments?

Answer

DouO picture DouO · Jun 28, 2013

I can't find any shortcut to generate javadoc comments. But if you type /** before the method declaration and press Enter, the javadoc comment block will be generated automatically.

Read this for more information.