Reputation: 11665
When commenting a method in Eclipse, we have the possibility to select the method with the mouse and the Javadoc comment is popping up on the screen, which is very helpful to me.
That's what I am missing in Android Studio.
Can we do the same in Android Studio?
Upvotes: 4
Views: 3479
Reputation: 1825
select the source item
menu > View > Quick Documentation
then Documentation view should appear on right-hand side.
Upvotes: 9
Reputation: 4175
if you type /**
before the method declaration and press Enter, the javadoc comment block will be generated automatically.
/**
*
* @param
* @param
*/
Upvotes: -1