mcfly soft
mcfly soft

Reputation: 11665

How to enable a JAVADOC view in Android Studio

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

Answers (2)

Pnemonic
Pnemonic

Reputation: 1825

select the source item

menu > View > Quick Documentation

then Documentation view should appear on right-hand side.

Upvotes: 9

Rahul Devanavar
Rahul Devanavar

Reputation: 4175

if you type /** before the method declaration and press Enter, the javadoc comment block will be generated automatically.

 /**
     * 
     * @param 
     * @param 
     */

Upvotes: -1

Related Questions