android studio 是google出的一款好用不贵的ide,好像是powerd by idea的那个公司,反正风格上差不多。下面是android studio常用的快捷键设置,记录一下自己用的,随时准备查看:

1、看代码时候用的

查看有哪些类实现了某个接口  ctrl + Alt + B

查看类的继承关系 选中类按 F4

查看具体类的实现 ctrl + 鼠标选中点击

回到方法括号的开始处或者到方法括号的结尾处  ctrl + [   和ctrl + ]

列出一个类里面的所有方法,属性   Alt + 7

查看一个方法在那里被使用  ctrl + G

打开一个类  ctrl + N

调用当前文件的大纲  ctrl + F12  貌似和 Alt + 7差不多

查看某个方法的调用路径(都在哪里用到了)ctrl + Alt + H

不离开文件和类的情况下快速查看某个方法的实现   shift + ctrl + i

2、写代码时候用的

引入包什么的   Alt + Enter

智能提示什么的   ctrl + space

重写父类的方法什么的   Alt + Insert

打个书签  f11   回到某个书签 shift + f11

上下移动行   Alt + Shift + up(down)

删除并复制行  ctrl + d

显示方法的参数  ctrl + p

rename ( 重构神技 )  shift + f6

块编辑(超爽神技)按住Alt + 拖动

现在所用的快捷键就这么多,发现好用的随时更新。

最新文章

  1. RESTful API测试工具
  2. webpack解惑:require的五种用法 (转)
  3. ABAP 传入数据到EXCEL自编函数
  4. AS3 从外部SWF中获取资源的方法(ApplicationDomain的使用)
  5. GIT GUI的使用
  6. WebApi服务Uri加密及验证的两种方式
  7. 正则表达式工具RegexBuddy使用教程(原创自Zjmainstay)
  8. 每日Scrum--No.9
  9. WebLogic: The Definitive Guide examined WebLogic's security mechanisms--reference
  10. Android之路-------浅淡Android历史、系统架构与开发特色
  11. android开发之——混淆编译
  12. HTML5比较实用的代码
  13. 附加到IIS调试出现不会命中断点
  14. 2.Node.js access_token的获取、存储及更新
  15. [Mean of range in array]
  16. 从On-Premise本地到On-Cloud云上运维的演进
  17. BMP文件解析
  18. Java中所涉及到的设计模式小记
  19. junit 测试报错 java.lang.Exception: No runnable methods
  20. expect 自动化控制命令

热门文章

  1. No ongoing transaction. Did you forget to call multi?
  2. Why it is good practice to declare loggers private, static, and final?
  3. JMS基础(1)
  4. Spark(1) - Getting Started with Apache Spark
  5. 使用Zxing实现扫二维码描
  6. HDU 4571 Travel in time ★(2013 ACM/ICPC长沙邀请赛)
  7. windows 远程桌面连接 RPi 2B
  8. UVALive 3713 Astronauts (2-SAT,变形)
  9. Java中的volatile
  10. Java [leetcode 24]Swap Nodes in Pairs