Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to remove class-objects-bar from Android Studio

I recently updated to Android Studio 2.3 and there is now a bar between the editor window and the tabs bar that displays the objects within a file but most of the time it's just empty space.

There is no context menu when I right-click on the new bar and I cannot seem to find any mention of it in the android studio guide. There doesn't even seem to be an acknowledgment of it in their own screen shot.

like image 421
flopshot Avatar asked Mar 03 '17 17:03

flopshot


People also ask

How do I remove kotlin appbar?

Another way for removing the title specifically from an activity is by using a getSupportActionBar(). hide() method. Inside the activity's kotlin file, we need to invoke getSupportActionBar(). hide() method.


1 Answers

This feather is called Breadcrumbs and was introduced in IntelliJ IDEA 2016.2

Breadcrumbs: Until now breadcrumbs were only available in HTML and XML code. Now breadcrumbs work for Java, too, where instead of tags they let you navigate through classes, lambda expressions and methods.

it's a pretty useful feather but if you don't like it you can disable it by going to Settings/Editor/General/Appearance/Show breadcrumbs. enter image description here

like image 169
humazed Avatar answered Oct 13 '22 01:10

humazed