Android studio快捷键Windows版本

简介: 为了方便大家记住这些小技巧和快捷键,我把它写成了一个插件,欢迎大家下载使用:http://chunsheng.me/EasyShortcut/ 快捷键 描述 通用-------------------------------------------...

为了方便大家记住这些小技巧和快捷键,我把它写成了一个插件,欢迎大家下载使用:
http://chunsheng.me/EasyShortcut/

 

快捷键			                   描述  
通用---------------------------------------------
Control + F9                       Build(编译)
Shift + F10                        Build and run(编译运行)
Shift + F9                         Debug(调试)
Control + Alt + Y                  Synchronize(同步)
Control + Shift + F12              Maximize/minimize editor(最大化/最小化编辑器)
Control + ` (backquote)            Quick switch scheme(快速切换主题)
Control + Alt + S                  Open settings dialogue(打开设置对话框)
Control + Alt + Shift + S          Open project structure dialog(打开项目对话框)
Control + Tab                      Switch between tabs and tool window(标签和工具栏切换)

导航和搜索-----------------------------------------
Press Shift twice                  Search everything (including code and menus)(全局搜索)
Control + F                        Find(查找)
F3                                 Find next(查找下一个)
Shift + F3                         Find previous(查找上一个)
Control + R                        Replace(替换)
Control + N                        Find class(搜索类)
Control + Shift + N                Find file (instead of class)(搜索文件)
Control + F12                      Open file structure pop-up(弹出所打开文件的结构)
Alt + Right/Left Arrow             Navigate(导航) between open editor tabs
F4 / Control + Enter               Jump to source(跳到源码)
Shift + F4                         Open current editor tab in new window(新窗口打开编辑选项卡)
Control + E                        Recently opened files pop-up(弹出最近打开文件)
Control + Shift + E                Recently edited files pop-up(弹出最近编辑文件)
Control + Shift + Backspace        Go to last edit location(最后编辑位置)
Control + F4                       Close active editor tab(关闭当前编辑选项卡)
Esc                                Return to editor window from a tool window(回到编辑窗口)
Shift + Esc                        Hide active or last active tool window(隐藏最近活动窗口)
Control + G                        Go to line(跳转到行)
Control + H                        Open type hierarchy(打开类层次结构)
Control + Shift + H                Open method hierarchy(打开方法层次结构)
Control + Alt + H                  Open call hierarchy(打开调用层次结构)

写代码必备------------------------------------------
Alt + Insert                       Generate code (getters, setters, constructors, etc....)
Control + O                        Override methods(重写方法)
Control + I                        Implement methods(实现方法)
Control + Alt + T                  Surround with (if...else / try...catch / etc.)
Control + minus/plus               Collapse/expand current code block(折叠/展开代码块)
Control + Shift + minus/plus       Collapse/expand all code blocks(折叠/展开所有代码块)
Control + D                        Duplicate current line or selection(复制当前行)
Control + Space                    Basic code completion(基本代码补全)
Control + Shift + Space            Smart code completion (filters the list of methods and
                                   variables by expected type)(自动代码补全)
Control + P                        Show parameters for selected method(显示方法参数)
Control + U                        Go to super-method/super-class(跳转父类/方法)
Control + Shift + I                Open quick definition lookup(打开快速定义查找)
Control + Alt + L                  Reformat code(格式化代码)
Control + Alt + I                  Auto-indent lines(自动缩进行)
Control + Shift + J                Smart line join(自动合并行)
Control + Enter                    Smart line split(自动拆分行)

版本管理----------------------------------------------
Control + K                        Commit project to VCS(提交代码到版本管理系统)
Control + T                        Update project from VCS(从版本系统更新项目)
Alt + Shift + C                    View recent changes(最近修改文件)
Alt + ` (backquote)                Open VCS popup(弹出版本管理)

 

目录
相关文章
|
10天前
|
Windows
如何查看自己电脑的windows系统版本?
这篇文章提供了一种简单快捷的方法来查看自己电脑的Windows系统版本,通过使用Windows的"运行"功能并输入`winver`命令来快速获取系统版本信息。
如何查看自己电脑的windows系统版本?
|
9天前
|
Java Android开发 C++
Android Studio JNI 使用模板:c/cpp源文件的集成编译,快速上手
本文提供了一个Android Studio中JNI使用的模板,包括创建C/C++源文件、编辑CMakeLists.txt、编写JNI接口代码、配置build.gradle以及编译生成.so库的详细步骤,以帮助开发者快速上手Android平台的JNI开发和编译过程。
55 1
|
9天前
|
编解码 Android开发
【Android Studio】使用UI工具绘制,ConstraintLayout 限制性布局,快速上手
本文介绍了Android Studio中使用ConstraintLayout布局的方法,通过创建布局文件、设置控件约束等步骤,快速上手UI设计,并提供了一个TV Launcher界面布局的绘制示例。
21 1
|
10天前
|
Ubuntu Linux 虚拟化
安装Windows Linux 子系统的方法:适用于windows 11 版本
本文提供了在Windows 11系统上安装Linux子系统(WSL)的详细步骤,包括启用子系统和虚拟化功能、从Microsoft Store安装Linux发行版、设置WSL默认版本、安装WSL2补丁,以及完成Ubuntu的首次安装设置。
42 2
|
10天前
|
Android开发
Android Studio: 解决Gradle sync failed 错误
本文介绍了解决Android Studio中出现的Gradle同步失败错误的步骤,包括从`gradle-wrapper.properties`文件中获取Gradle的下载链接,手动下载Gradle压缩包,并替换默认下载路径中的临时文件,然后重新触发Android Studio的"Try Again"来完成同步。
177 0
Android Studio: 解决Gradle sync failed 错误
|
10天前
|
Java Android开发 芯片
使用Android Studio导入Android源码:基于全志H713 AOSP,方便解决编译、编码问题
本文介绍了如何将基于全志H713芯片的AOSP Android源码导入Android Studio以解决编译和编码问题,通过操作步骤的详细说明,展示了在Android Studio中利用代码提示和补全功能快速定位并修复编译错误的方法。
20 0
使用Android Studio导入Android源码:基于全志H713 AOSP,方便解决编译、编码问题
|
10天前
|
API 开发工具 Android开发
Android Studio:解决AOSP自编译framework.jar引用不到的问题
在Android Studio中解决AOSP自编译framework.jar引用问题的几种方法,包括使用相对路径、绝对路径和通过`${project.rootDir}`动态获取路径的方法,以避免硬编码路径带来的配置问题。
20 0
Android Studio:解决AOSP自编译framework.jar引用不到的问题
|
10天前
|
Java 开发工具 Android开发
Android Studio利用Build.gradle导入Git commit ID、Git Branch、User等版本信息
本文介绍了在Android Studio项目中通过修改`build.gradle`脚本来自动获取并添加Git的commit ID、branch名称和用户信息到BuildConfig类中,从而实现在编译时将这些版本信息加入到APK中的方法。
19 0
|
26天前
|
Dart 开发工具 Android开发
Android Studio导入Flutter项目提示Dart SDK is not configured
Android Studio导入Flutter项目提示Dart SDK is not configured
56 4
|
4月前
|
Java Android开发
Android Studio的使用导入第三方Jar包
Android Studio的使用导入第三方Jar包
31 1
下一篇
DDNS