Android Studio annoys popup for layout_width and layout_height

I am using Android Studio 2.2.3 on Mac. Whenever I add a new element to the layout XML resource, the attributes layout_widthboth layout_heightend automatically and the cursor moves to the value layout_width(this is normal).

The problem is that in a very short time without any action pop-up window with the documentation match_parentor wrap_content, and I have to manually close the window before I can enter your value layout_width. Then the cursor moves to layout_heightand repeats the same procedure again and again. This is very annoying when adding new views.

Can someone repeat this problem or does anyone know how to prevent it?

Below is the GIF animation of the problem:

Annoying popup documentation

+4
source share
4 answers

Settings> Editor> General> Code Execution> uncheck the Auto pop-up menu

enter image description here

+3
source

This is called the "Quick Doc"

Ctrl-Q (Command + Q, on MAC) switches between the states of the doc window (when using the default key card).

Possible states:

-Hidden
-Shown to the side of the auto-complete list
-Docked as one of the tabs

If you have a different keyboard layout, you can search for this action in Settings → Key. The action is called "Quick Doc".

Source

0
source

,

→ → → → "" ... " " ?

: Show Quick DOcumentation

0

Windwos && Linux (ubuntu):

File > Settings > Editor > General > Code Completion

Mac:

File > Preferences > Editor > General > Code Completion

unChecked: AutoPopup documentation

0
source

Source: https://habr.com/ru/post/1669778/


All Articles