- 如何修改Android Studio控制台编码
在build.gradle(main Module)的根添加以下代码
// 新版Gradle
tasks.withType(JavaCompile) {
options.encoding = "UTF-8"
}
// 旧版Gradle
tasks.withType(Compile) {
options.encoding = "UTF-8"
}
- 设置类的默认注释
在Editor -> Code Style -> File and Code Templates中进行配置,常用配置
/**
* Descriptions:
* StartVersion:
* <p>
* Author:ChenME
* Date:${DATE}
* Email:ibelieve1210@163.com
*/
<%--
Descriptions:
StartVersion:
<p>
Author:ChenME
Date:${DATE}
Email:ibelieve1210@163.com
--%>
- 代码行号的相关设置
-
设置行号默认显示
Editor -> General -> Appearance,右侧Show line numbers
-
设置代码行号字体的样式
Editor -> Colors & Fonts -> General,右侧Code -> Line number(常用紫色:9876AA)
-
设置 logcat 中的字体颜色
Editor -> Color Scheme -> Android Logcat
i : #037C25
d : #1574BB
w : #D38106