Code completion to in Android Studio

前端 未结 4 1108
别那么骄傲
别那么骄傲 2021-02-03 17:48

A question about the editor, I am not sure how to briefly phrase the question so I could not find an answer

I have just moved from Eclipse to Android St

相关标签:
4条回答
  • 2021-02-03 18:23

    in Android studio open File----> Setting (Ctrl + Alt + S) you can use this shortcut

    from Setting open Editor --->General --> Code Completion -- > change Case Sensitive Completion to None

    look at image below

    0 讨论(0)
  • 2021-02-03 18:42

    You can set 'Case sensitive completion' to 'None' in IDE Settings > Editor > Code Completion.

    0 讨论(0)
  • 2021-02-03 18:45

    make sure to disable "power save mode" in your File >> Power save mode.

    0 讨论(0)
  • 2021-02-03 18:47

    Intellij (Studio) parses the whole text to search for your input characters by default. If you type "Text", it should show "autoText" in the options by default. You don't have to configure anything for this behavior.

    It will give preference to exact matches though, so if you type in "Text" with a capital T, you're more likely to get the correct result than typing "text" with a small t.

    You can change these preferences in:

    Settings(or Preferences in mac)->Editor->Code Completion

    0 讨论(0)
提交回复
热议问题