studersi
studersi

Reputation: 1495

Show all tabs in Android Studio

Is there a way of showing all source code tabs in Android Studio one one horizontal line (in the tab bar) and scroll through them?

When there are too many source code tabs open in Android Studio, some of them are moved to the drop down list at the top right corner of the code edit window. The tabs that are moved to this drop down list are not shown in the tab bar any more.

The tabs in the tab bar can be scrolled with the mouse wheel, but only the ones that have not been moved to the drop down list.

Is there a way to remove the drop down list and keep all tabs in the tab bar?

Upvotes: 21

Views: 11078

Answers (4)

neurona.dev
neurona.dev

Reputation: 1407

In android Studio 4.0.1 you can find tabs configuration in:

Window->Editor Tabs->Configure Editor Tabs...

After, uncheck "Show tabs in one row" checkbox if it is selected.

Configure Editor Tabs option Configure Editor Tabs window

Upvotes: 16

Shubham Gupta
Shubham Gupta

Reputation: 103

**For Linux -**

For Linux you can do similar to MAC

Upvotes: 1

Aniket Thakur
Aniket Thakur

Reputation: 68945

Not sure if this feature was introduced in later versions of studio (than at the time of which this question was asked) but now you have option to show tabs in multiple rows. You can do so by

Windows -> Editor Tabs -> Tabs placement -> Show Tabs in single  row

You can uncheck above which is checked by default. Snapshot below -

enter image description here

Upvotes: 40

Ezio
Ezio

Reputation: 2985

The size of the tab bar is fixed and there are only fixed number of tabs that can fit inside that limited area.So, one way to quickly switch between the open tabs is to use the SWITCHER tool of Android Studio.

Press control + tab in MAC (don't know the shortcut for windows) and it will bring all the classes and other files which are currently open and you can efficiently switch between them without even touching your mouse or touchpad.

Upvotes: 7

Related Questions