theapache64
theapache64

Reputation: 11744

How to disable Code Completion in Android Studio?

I am new in Android Programming and I want to disable the auto-completion in Android studio. I think this might even improve my coding ability and help me to understand the API Structure. I've done a lot of search in Google, but nothing found positive. So how to disable the auto-completion in Android Studio ? I want disable code-completion of every language (XML,JAVA,Groovy...).

I want to show nothing even if I press the ctrl+space .

Upvotes: 7

Views: 5926

Answers (4)

Muhammad Anan
Muhammad Anan

Reputation: 1

File->Settings->Tools->Gemini

Uncheck this box

"Enable AI-based inline code completions"

Upvotes: 0

N J
N J

Reputation: 27515

Go to

File-> Setting-> Editor

unchecked all check box

enter image description here

then

Go to Keymap-> type basic in search box

Then Under Main Menu-> Code -> Completion-> select Basic ->Right click ->remove Ctrl+Space

assign

Ctrl+Space to any other option

enter image description here

Upvotes: 1

Ahmad Nawaz
Ahmad Nawaz

Reputation: 1148

Go to File-> Setting-> Editor unchecked all check box

enter image description here

Then Go to File-> Setting-> Keymap-> Main Menu->Code->Completion remove all hot keys and apply.

enter image description here

Upvotes: 10

Tim Mutton
Tim Mutton

Reputation: 756

File -> Power Saver Mode

This disables a bunch of features, including code completion

Upvotes: 6

Related Questions