Jacob
Jacob

Reputation: 15297

Android studio automatically open's documentation view

I don't know if it is bug or kind of setting, but it is very annoying while typing value i.e. android:layout_gravity="", it opens hints with dropdown, and after a while the documentation view gets opened and hides the dropdown with hints.

enter image description here

I checked that no button is suspended or anything like that. I use Ubuntu 14.04.

Upvotes: 99

Views: 22720

Answers (8)

hata
hata

Reputation: 12478

For Android Studio 4.x ~ Arctic Fox | 2020.3.1

Preferences > Editor > Code Editing > Quick Documentation > Show quick documentation on mouse move: unchecked

screenshot

Upvotes: 5

Clocker
Clocker

Reputation: 1336

Studio 3.4.2, somehow had setting checked, uncheck it.

File -> Settings -> Editor -> General -> Code Completion. studio-doc-autopopup Cheers

Upvotes: 7

crgarridos
crgarridos

Reputation: 9263

I found out that I don't want to disable the documentation. Instead, I set the window to be 'Opened as Popup',

enter image description here

This displays the documentation aside to the cursor and autocloses it automatically.

enter image description here

Surely I've set it before as a 'Tool Window' to see the full content and then I forgot to set it back.

Upvotes: 11

Saurabh Vishwakarma
Saurabh Vishwakarma

Reputation: 77

Please check image. This the only correct answer as far i know because i sorted out this way only. Just click on Help>find Action>auto(in the search box)> and uncheck the checkbox in the image shown

Upvotes: 5

Abhishek kumar
Abhishek kumar

Reputation: 4445

Follow the simple steps to remove open Documentation by cursor move :

Android Studio -> File -> Setting -> Editor -> General

Right side of the screen go to Others :

  • Uncheck checkBox show quick documentation of mouse move & Apply.

enter image description here

Upvotes: 24

parkerkramer
parkerkramer

Reputation: 91

Note that this functionality has been moved recently. It's now in:

Android Studio -> Preferences -> Editor -> General -> Other.

Uncheck "quick documentation on mouse move".

Upvotes: 9

suprith
suprith

Reputation: 559

Preferences > Editor > General > CodeCompletion > uncheck Auto popup feature

Upvotes: 22

Jacob
Jacob

Reputation: 15297

Strange, because I've not changed anything with AS from months and there was no such behavior before. There's solution:

enter image description here

Upvotes: 150

Related Questions