Android Studio怎么自定义代码注释的颜色
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android Studio怎么自定义代码注释的颜色相关的知识,希望对你有一定的参考价值。
参考技术A 1、首先在菜单栏找到File菜单,然后File>Settings>Editor>Colors&Fonts>Font,准备修改字体。不幸的是,androidStudio自带的Scheme是不允许修改字体的2、此时,需要通过点击“Saveas”来新建一个Scheme,新方案将以原方案为基础修改为你喜欢的风格。包括字体、字体大小、行间距、代码颜色等设置。按下ok后,是不是可以修改字体大小啦?3、如果发现可选择的字体很少,本机上明明安装了的字体没有显示,如下所示,那么呢?4、去掉红框里的勾选就可以啦!5、以java编辑区为例,如果你还觉得当前的代码颜色不够好看:6、那么,Colors&Fonts>Java,点击要修改颜色的代码字段,则对应的代码字段类型将被选择,如代码字段“interface”对应“keyword”类型,右边即是对“keyword”类型字段的指定设置。7、在修改颜色前,首先确保不勾选“Useinheritedatrributes”,再点击颜色框,最后在弹出的颜色选择对话框中选择自己期望的颜色,点击choose选择。8、再看看java代码编辑区,颜色是不是如你所想地变化了?9、好了,基本的方法搞定之后,接下来请完善你的新主题吧!Visual Studio 2019 修改注释快捷键和添加自定义头部注释
1、修改注释快捷键
将"编辑.切换行注释"的快捷键修改为"Alt+/",点击"分配",“确定”,即可完成 Visual Studio 2019 注释快捷键的修改(修改为"Alt+/"),返回编辑器书写代码,对指定行添加注释和取消注释已成功。
2、添加自定义 C# 代码头部注释
打开 Visual Studio 2019 安装路径:E:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\Common7\\IDE\\ItemTemplates\\CSharp\\Code\\2052,修改如下文件:
(1)E:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\Common7\\IDE\\ItemTemplates\\CSharp\\Code\\2052\\Class\\Class.cs
using System;
using System.Collections.Generic;
$if$ ($targetframeworkversion$ >= 3.5)using System.Linq;
$endif$using System.Text;
$if$ ($targetframeworkversion$ >= 4.5)using System.Threading.Tasks;
$endif$
namespace $rootnamespace$
{
/// <summary>
///********************************************
/// ClassName : $safeitemrootname$
/// Author : WeiXiaolei
/// CreateTime : $time$
/// Description :
///********************************************/
/// </summary>
class $safeitemrootname$
{
}
}
(2)E:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\Common7\\IDE\\ItemTemplates\\CSharp\\Code\\2052\\Interface\\Interface.cs
using System;
using System.Collections.Generic;
$if$ ($targetframeworkversion$ >= 3.5)using System.Linq;
$endif$using System.Text;
$if$ ($targetframeworkversion$ >= 4.5)using System.Threading.Tasks;
$endif$
namespace $rootnamespace$
{
/// <summary>
///********************************************
/// InterfaceName : $safeitemrootname$
/// Author : WeiXiaolei
/// CreateTime : $time$
/// Description :
///********************************************/
/// </summary>
interface $safeitemrootname$
{
}
}
(3)E:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\Common7\\IDE\\ItemTemplates\\CSharp\\Code\\2052\\WebClass\\Class.cs
using System;
using System.Collections.Generic;
$if$ ($targetframeworkversion$ >= 3.5)using System.Linq;
$endif$using System.Web;
namespace $rootnamespace$
{
/// <summary>
///********************************************
/// ClassName : $safeitemrootname$
/// Author : WeiXiaolei
/// CreateTime : $time$
/// Description :
///********************************************/
/// </summary>
public class $safeitemrootname$
{
}
}
修改完成,在 Visual Studio 2019 编辑器中添加新类 HelloWorld.cs,出现自定义头部注释如下:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WindowsFormsApp1
{
/// <summary>
///********************************************
/// ClassName : HelloWorld
/// Author : WeiXiaolei
/// CreateTime : 2021/11/4 12:15:09
/// Description :
///********************************************/
/// </summary>
class HelloWorld
{
}
}
添加新接口 IHello.cs,出现自定义头部注释如下:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WindowsFormsApp1
{
/// <summary>
///********************************************
/// InterfaceName : IHello
/// Author : WeiXiaolei
/// CreateTime : 2021/11/4 12:15:40
/// Description :
///********************************************/
/// </summary>
interface IHello
{
}
}
Visual Studio 2019 C# 代码添加头部注释成功。
以上是关于Android Studio怎么自定义代码注释的颜色的主要内容,如果未能解决你的问题,请参考以下文章