1

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

Helix
  • 59
  • 1
  • 8

1 Answers1

1

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

Community
  • 1
  • 1
VJ Vélan Solutions
  • 6,434
  • 5
  • 49
  • 63