# AndroidStudio代码块的自动补全

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了# AndroidStudio代码块的自动补全相关的知识,希望对你有一定的参考价值。

参考技术A settings --> Editor --> Live Templates

private ()
private static class SingletonHolder
public static instance = new ();


public static ins()
return SingletonHolder.instance;

​</pre>

private static final String TAG = " ";
private ()
/**

public static ins()
return SingletonHolder.instance;


<pre spellcheck="false" class="md-fences md-end-block ty-contain-cm modeLoaded" lang="java" cid="n13" mdtype="fences" style="caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0); font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-indent: 0px; text-transform: none; widows: auto; word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; text-decoration: none; box-sizing: border-box; overflow: visible; font-family: var(--monospace); font-size: 0.9em; display: block; break-inside: avoid; text-align: left; white-space: normal; background-image: inherit; background-size: inherit; background-attachment: inherit; background-origin: inherit; background-clip: inherit; background-color: rgb(248, 248, 248); border: 1px solid rgb(231, 234, 237); border-top-left-radius: 3px; border-top-right-radius: 3px; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; padding: 8px 4px 6px; margin-bottom: 15px; margin-top: 15px; width: inherit; position: relative !important;"> private static final String TAG = " ";
private ()
public volatile static myInstance;
public static ins()
if (myInstance == null)
synchronized ( .class)
if (myInstance == null)
myInstance = new ();



return myInstance;

​</pre>

避免重复造轮子贴出来俩:

[图片上传失败...(image-25cb22-1600260779098)]

还需要你选择一下选择一下name的表述才行 比如我是想要class 那就拿classname()吧,ok了 就这样了

天真了吧!这样生成出来的肯定不是你想要自动补齐类名的东西!!!

你以为这样就完了?

Androidstudio的快捷键

只记忆常用的快捷键。

1,alt+enter导包,抛异常什么的,用来自动修正的

2,Ctrl+alt+V自动补全

3,Alt+Insert 生成代码(如get,set方法,构造函数等)

4,Ctrl+H 显示类结构图

5,3.Ctrl+[或]可以跳到大括号的开头结尾

6, Ctrl+alt+F抽局部变量未成员变量

 

以上是关于# AndroidStudio代码块的自动补全的主要内容,如果未能解决你的问题,请参考以下文章

Android Studio 设置代码提示和代码自动补全快捷键--Eclipse 风格 - 转

Androidstudio快捷键

Vim设置括号自动补全和快速跳出

Androidstudio的快捷键

在 Android 中集成 Flutter

如何在 Android Studio 中获得 Eclipse 风格的代码补全