美文网首页
Android Studio 偏好设置

Android Studio 偏好设置

作者: 画十 | 来源:发表于2017-12-14 10:50 被阅读30次

    快捷键

    Preferences -> keymap ->

    1. command + d删除一行:delete line
    2. command + shift + F格式化代码: reformat code
    3. command + shift + R切换代码文件:File...
    4. control + R全局替换:Replace in Path...
    5. command + shift + o删除无用import:Optimize Imports...
    6. alt + command + 方向下复制选中行到下面:duplicate entire lines
    7. command + shift + g搜索引用:Find Usages

    代码模版

    添加模版 Preferences -> Live Templates ->

    1. tmb : Timber.e(">>> $name$"+$value$);
    2. loge : android.util.Log.e(" >>> ", "$METHOD_NAME$: $content$" + $exception$);

    字体

    1. 更改字体
      Preferences -> Appearance
    2. 字体推荐
      inconsolata

    其他

    1. 设置command + 左键control + 左键同样功能
      Preferences -> Keymap -> Search for "Declaration" -> double click on the search result under the 'Navigate' category -> select "add mouse shortcut" -> and press the shortcut buttons (eg. CMD+left click) and save it

    2. 提示不区分大小写,因此我们要改成大小写不敏感
      Preferences -> code completion -> case sensitive completion: none;

    3. 自动import
      Preference -> auto import

    4. 代码提示(alt + /):
      Preference -> Keymap -> Completion -> Basic

    相关文章

      网友评论

          本文标题:Android Studio 偏好设置

          本文链接:https://www.haomeiwen.com/subject/dbmhwxtx.html