12

I am looking for Breadcrumb functionality like Eclipse in Android Studio.

In Eclipse Breadcrumb shows "method signature" when pointer(cursor) come inside whereas in Android Studio Breadcrumb is good for nothing.

Please find attached for better insight.

enter image description here

Amit Yadav
  • 32,664
  • 6
  • 42
  • 57

5 Answers5

9

The accepted answer is not correct.

The feature is still here in 2018.

It's under View -> Active Editor -> Show Breadcrums.

The breadcrums are situated south of the current editing window, not north as in Eclipse.

adrianvintu
  • 1,041
  • 10
  • 7
  • Thank you. I missed "south of the current editing window,". It used to be north. – Hong Feb 01 '19 at 18:06
  • after 3 years i come back to the answer to thank myself - i forgot where they hid this valuable option :D also, thank you guys for up-voting this answer! :) – adrianvintu Dec 20 '21 at 12:54
4

You can enable it via View -> Navigation Bar and check it.

But it will show breadcrumb/navigation upto class only and not upto the method signature.

As suggessted by AVEbrahimi also, ctrl+F12 will show method signature.

enter image description here

Rachita Nanda
  • 4,509
  • 9
  • 42
  • 66
3

Seems this feature gone away. You should use:

Ctrl+F12 OR CMD+F12

Ronak Mehta
  • 5,971
  • 5
  • 42
  • 69
AVEbrahimi
  • 17,993
  • 23
  • 107
  • 210
  • 1
    I am using Eclipse key mapping in Android Studio, Ctrl+F12 is not working at my end. – Amit Yadav Dec 20 '14 at 08:15
  • .@AVEbrahimi as I told I am using Eclipse mapping and I found Ctrl+F3/Ctrl+O do a trick i.e "File Structure" thanks! – Amit Yadav Mar 28 '15 at 11:08
  • @AmitYadav Well, don't you think you should be educating yourself by following the Android Studio UI designers into their world? Every tool has it's pros and cons, so by setting wrapping Android Studio into a half working Eclipse keys UI you are definitively loosing that other half that Android Studio had prepared for you... – Bondax Mar 09 '16 at 16:21
  • You should write function name, not shortcut name, which may differ. – Pointer Null May 16 '16 at 06:31
0

Here are two ways to see the method signature through a tool tip that hovers next to the method you have selected or put the caret on.

Press ctrl + P with the method selected.

or

Go to View > Show Parameter Info with the method selected.

I found the above solution on the second link I looked at after this one. The link was for a different IDE but the hotkey works in Android Studio.

Show Parameter Info

Also, you can go to Settings > Editor Under "Other" check "Show quick doc on mouse move". This will show a popup tool tip with information about the method including parameter info.

Found that here:

View method information in Android Studio

Community
  • 1
  • 1
Soenhay
  • 3,958
  • 5
  • 34
  • 60
0

Pressing Alt+Q displays the name of the current context, which is actually the method name (Context Info) quickly and easily.

AVEbrahimi
  • 17,993
  • 23
  • 107
  • 210