Rahul Chaurasia
Rahul Chaurasia

Reputation: 1641

Android Studio, navigating through methods

In android studio, pressing the Ctrl + click on a method navigates to the method implementation. Now, I am not getting how do I return to my previous position(where I had clicked) using some shortcut (like in eclipse Ctrl + left arrow).

Between, I am using Linux machine.

Upvotes: 1

Views: 574

Answers (2)

WM1
WM1

Reputation: 451

Android Studio uses a left arrow as a Back Button (see illustration):

If it isn't showing: (using: Studio 2.1.2 Windows)

  • Ensure toolbar is visible: Click Help> Find Action> in the dialog, type "Show Main Toolbar" click "On" in the dialog.

  • If the "Back" arrow is not visible, enabled it: "Right Click" a blank area of the Main toolbar, select Customize Menus and Toolbars, navigate the popup to "Main Toolbar" and click "Restore All Defaults".

enter image description here

Upvotes: 1

ianhanniballake
ianhanniballake

Reputation: 200020

On Windows, the keystroke is Ctrl + Alt + Left.

It can be found under the Settings Window->Keymap as Main menu->Navigate->Back

Upvotes: 1

Related Questions