How to get Eclipse style code in Android Studio

I am transitioning from Eclipse to Android Studio , and I noticed a slight difference. In Eclipse, when I use code completion, for example, like eclipse code help

Eclipse will complete such code and let me just use the tab to go to the next parameter.

 Log.d(tag, msg) 

But Android Studio does the following:

 Log.d() 

So, is there any parameter that will achieve the same result in Android Studio or is available only in Eclipse

+5
source share
1 answer

In your IDE, go to Editor -> Code Completion and make sure Autopopup code completion is complete

0
source

Source: https://habr.com/ru/post/1206904/


All Articles