GAYTH BACCARI
GAYTH BACCARI

Reputation: 2692

IDE Android Studio ToolBar (TOP) missing?

I installed the last version of Android Studio v3.1.4

but after creating a project i found the IDE not showing toolbar in TOP

Android Studio screenshot

Android Studio screenshot2

Upvotes: 7

Views: 8024

Answers (5)

P Sekhar
P Sekhar

Reputation: 172

As far as I can see, you are talking about an Android Studio problem in Windows OS. I will have answer for both Windows & Linux.

Be sure to close Android Studio before doing this.

Easy way

Press Ctrl + Shift+N
Search Appearance (Make sure the search tab is highlighted with All)
Now click Appearance
Check the Main Menu Option
Done

Hard Way (Its good to have two solutions for one problem)

If the above solution does not work for you, then you can try to solve this the hard way which also fixes other problems that causes Android Studio to crash.

On Windows

Go to folder C/Users/{USERNAME}/ then there will be a folder called AndroidStudio maybe with the version number. E.g. - AndroidStudio4.0
If you can not see the above folder be sure to Enable Hidden files and Folders in the View tab in file explorer

Open that folder and delete the folder with the name config. That's it. Now launch Android Studio and the problem will have been fixed.

On Linux (Except Kali Linux because it always runs as root)

cd /home/{USERNAME}/

browseToUserFolder:
browseToUserFolder

Now run command

ls -al

Find the AndroidStudio folder:
finding androistudio folder

Now you may have a Folder having name .AndroidStudio4.0 or .AndroidStudio3.3.............. Something like that depending on the version of the Android Studio is installed

Now go to that folder and delete the folder with the name name config

cd .AndroidSudio4.0
rm -rf config

delete the config folder:
delete the config folder

Now start Android Studio, everything will be back to the default.

Upvotes: 12

iAmSauravSharan
iAmSauravSharan

Reputation: 153

If you are running Android Studio 3.0+, you can access any action/menu:

  1. Press Shift twice, It will launch Search Everywhere option

  2. Now, Select the Action tab and type Menu

  3. You will see an option View | Appearance: Main Menu, switch it on

    You're done.

Search Everywhere option menu

Upvotes: 2

Jamie
Jamie

Reputation: 427

For Android Studio 4.0.1, you can go to View > Appearance and toggle Toolbar:

Toggle main toolbar

The checkmark to the left of Toolbar means that Android Studio's Main Toolbar is toggled on and currently displays. No checkmark indicates the Main Toolbar is toggled off and disabled.

Upvotes: 8

Julius
Julius

Reputation: 21

go to search, type appearance and enable view appearance in main menu.

Upvotes: 2

navylover
navylover

Reputation: 13549

You could press Alt + v to open view menu, and toggle toolbar like below fig:

enter image description here

Upvotes: 1

Related Questions