How to set max line length in Android Studio code editor?

前端 未结 12 1196
温柔的废话
温柔的废话 2020-12-29 01:31

How can I set a maximum length for Android Studio\'s code editor, or may be set a word wrap?

In my Android Studio, no matter how long a statement I type on a single

12条回答
  •  遥遥无期
    2020-12-29 01:59

    If you need not a soft wrap,
    but actually, brake one long line onto several lines you need:

    Go to Preferences -> Editor -> Code style -> Java/Kotlin -> Wrapping and braces (tab) -> Check "Ensure that right margin is not exceeded"

    Now try to reformat your code:
    press OPTION (ALT) + CMD + L on your Mac (or CTRL + ALT + L on PC)

    Edit 13.02.19

    As noted in comments this option seems not available in settings for Kotlin. However, there is a workaround to manually add it.
    Here is what it takes to make it work:

    1. Export the settings scheme.

    2. Open saved xml file.

    3. Find tag (or create)
    4. Add the WRAP_LONG_LINES setting manually:

      
         ...
         
      
    5. Save edits and and import back the scheme.
    6. Here you go!

提交回复
热议问题