In Eclipse, when you hover your mouse over a method, a window would appear with a description of what the method does, what the parameters mean and what it returns. Is there a way to get Android Studio to do the same thing?
The easiest and the most straightforward way:
To activate: File > Settings > Editor > General
For Mac OS X
, Android Studio > Preferences > Editor > General and check Show quick documentation on mouse move:
Other ways:
You can go into your IntelliJ's bin folder and search for idea.properties. Add this line to the document:
auto.show.quick.doc=true
Now you'll have the same floating docs window like in Eclipse.
You have to press CTRL+Q to see the Javadoc.
You can pin the window and make the documentation appear every time you select a method with your mouse though.
Android Studio 1.0: You have to hold CTRL if you want to get hold of documentation window for e.g. scrolling documentation otherwise as you move your mouse away from method documentation window will disappear.