Android Studio快捷键动态演示

快捷键汇总:

关联文件:查找layout文件: Ctrl + Command + Up
仅限在只有一个布局文件中使用
image
删除行:Command + backspace:
image
重新或者构造方法:Command + N
如此,甚好
跳转到类:Command + B:
与Ctrl+鼠标左键效果一样   
快捷覆写方法:Control + O
子类想重写父类的方法时,按此组合键可显示所有父类的方法。
导入包,自动修正: Alt+回车
如此,甚好
查找
    当前文件:Command + F
    全局搜索:Command + Shift + F
替换:
    当前文件:Command + R
    全局替换:Command + Shift +R
剪切:Command + X
自动补全 :Command+Shift+Enter
image
断点过滤:Right click on a breakpoint and enter a condition.
image
添加一行 Command + D:
image
正则表达式 Alt+Enter:
image
补全:使Enter和Tab的区别:
link
提取方法:Cmd+Alt+M:
image
提取变量:Cmd+Alt+P:
image
合并行:Ctrl + Shift + J:
image
上次编辑定位:Cmd+Shift+Backspace
image
使用模板:Command +J
image
上下移动行:Alt(Command)+Shift+Up/Down
image
文件导航:Command + O:
image
查看父类super方法:Command+U:
image
打开面板: Command + number:
image
在Finder中打开文件: Command + Click
image
方法简写:
image
快速限定查看:
image
最近改变文件:Command+ Shift + E
image
最近查阅文件: Command + E:
image
重命名 Ctrl + T:
image
image
添加异常捕获: Command+ Alt + T
(选中一块代码,按此组合键,可快速添加if 、for、try/catch等语句):
image
类文件之间切换:Ctrl+Tab:
image
全局查找文件:double Shift(连续两次点击Shift)
方法全部折叠:
OS X:Cmd + Plus(+)/Minus(-)

来源:

你可能感兴趣的:(Android Studio快捷键动态演示)