偶尔使用Android Studio写App,由于习惯了ADT的一些配置,如大小写均智能提示等,因此在AS中感觉非常不习惯,不过不用担心,AS也可以做上述配置,满足你的要求。
1.去拼写检查
AS默认会对代码做拼写检查,如果检查有错的话会打上波浪线,当然这并不影响编译运行,但如果对代码有高度的整洁规范要求,则似乎不可容忍,具体做如下配置,可以关闭AS的拼写检查。
File-->Settings,在左侧面板选择Editor-->Inspections,右侧找到Spelling选项,将其后面复选框的对勾去掉,然后保存即可。
2.自动import
在AS中可以通过Alt+Enter逐个导入import,但这样效率太低了,做如下配置,AS就可以为我们导入所有确定的import,如下图:
File-->Settings,在左侧面板选择General-->Auto Import,右侧选中Add unambiguous imports on the fly,然后保存即可。
3.输入大小写都能够智能提示
在AS中默认的智能提示是区分大小写的,一般的coding模式是小写,但类名基本是大写,如果在输入时切换大小写则会大大影响编码效率,因此需要让AS无论大小写都支持智能提示,具体配置如下图:
File-->Settings,在左侧面板选择General-->Code Completion,右侧将Case sensitive completion设置为None,然后保存即可。
4.Gradle构建时发生空间不够的情况
具体报错如下:
Error:Unable to start the daemon process.
This problem might be caused by incorrect configuration of the daemon.
For example, an unrecognized jvm option is used.
Please refer to the user guide chapter on the daemon at
http://gradle.org/docs/2.2.1/userguide/gradle_daemon.html
Please read the following process output to find out more:
-----------------------
Error occurred during initialization of VM
Could not reserve enough space for object heap
Error: Could not create the Java Virtual Machine.
Error: A fatal exception has occurred. Program will exit.
解决方案配置如下:
File-->Settings,在左侧面板选择Build,EXecution,Deployment-->Gradle,右侧将Gradle VM options设置为-Xmx512m,然后保存即可。
这是翻译官方的文档,英语好的可以直接去官方文档查看,英语不好,大家就将就看吧,算是我翻译的第一篇技术文章,因为是个英语渣,技术也渣,所以最近在学英语,就尝试着自己来翻译,不过翻译有不好的地方,大家可以指出来,我会在以后的翻译中慢慢改进。
以后我也会尝试者每周翻译一篇英文技术文章,如果你有好的学习英语和翻译方面的技巧,欢迎与我交流。
原文链接:http://developer.andro
Error:Unable to start the daemon process.
This problem might be caused by incorrect configuration of the daemon.
For example, an unrecognized jvm option is used.
Please refer to the user guide...
偶尔使用
Android
Studio
写App,由于习惯了ADT的一些
配置
,如
大小写
均
智能
提示
等,因此在AS中感觉非常不习惯,不过不用担心,AS也可以做上述
配置
,满足你的要求。1.去
拼写检查
AS默认会对代码做
拼写检查
,如果检查有错的话会打上波浪线,当然这并不影响编译运行,但如果对代码有高度的整洁规范要求,则似乎不可容忍,具体做如下
配置
,可以关闭AS的
拼写检查
。 File-->Settings,...
Spellchecker inspection helps locate typos and misspelling in your code, comments and literals, and fix them in one click
意思是指
拼写检查
器会帮助定位到打字以及拼写错误在代码、注释和文体中的位置,并且通过一次点击来修复它们
有两种解决方法:
打开
Android
Studio
设置:【File】 ->【 Settings】
打开/搜索 设置项【Auto
Import
】: 【Editor】 -> 【General】 -> 【Auto
Import
】
在设置页面找到【java】和【kotlin】下的这两项并勾上:
【Add unambiguous
import
s on the fly】:
自动
添加
import
【Optimize
import
s on the fly】:
自动
清除无用的
import
点击右下角的【Apply】【OK.
File | Settings 打开设置
选择 Appearance
勾选 Override default fonts by (not recommended) ,选择一款支持中文的字体即可,size为字体大小。 文件编码
File | Settings 打开设置
选择 Editor | File En
1.”工具”->”选项”->”IntelliTrace” 去掉”启用 IntelliTrace “的选项;
2.”选项”->”文本编辑器”->”c/c++”->”高级”,禁用IntelliSense,禁用数据库,禁解析,不启用日志.解决方案扫描时间,设置为最大5000,禁用
自动
快速信息.呵呵,好了,烦人垃圾的
自动
分析太效率低下了,540...
在此介绍如何在TeX
studio
中禁用
拼写检查
。
禁用的motivation:在TeX
studio
中写中文文章的时候,TeX
studio
总会一大堆
拼写检查
的红色波浪线(如下图),这估计是因为没有安装中文
拼写检查
的原因,考虑到平时主要写英文latex,所以懒得安装中文的
拼写检查
了。故在此记录禁用过程。