Helix
Helix

Reputation: 59

Android studio code completion not working properly

I am using Android Studio version 0.9.3 Canary Build.

When I typed ArrayAdapter<String> adapter = new ArrayAdapter<String>(), the editor did not provide code completion options for the method parameters instead it just displayed them in a balloon. How do I enable the code completion list to appear for those suggestions. Thanks.

enter image description here

Upvotes: 1

Views: 368

Answers (1)

VJ V&#233;lan Solutions
VJ V&#233;lan Solutions

Reputation: 6554

Ctrl+P, Parameter info (within method call arguments)

If you using MAC OS X, then use ⌘P and the name of the functionality is "parameter info" (from View > Parameter Info)

There's a nice explanation here

Upvotes: 1

Related Questions