as实战 定制as
代码风格
ctrl+alt+s 调出设置
code style 可设计代码风格
外观,颜色,字体
ctrl+alt+s 调出设置
appearance
editor|colors fonts
键盘映射
keymap
宏
上面的都渣渣,这个比较爽
Edit | macros | start macro recording
可以输入终端命令,然后
Edit | macros | stop macro recording
一个简易的脚本
文件和代码模板
setting | editor | file and live templates 文件代码模板
setting | editor | live templates 代码模板
比较有意思
菜单和工具栏
setting | appearance | menus and toolbar 菜单和工具栏
可穿戴设备实验 略(没设备不可实验)
sdk 工具 之前有了
gradle 之前有更详细的
调试
debug调试:
step over 跳过当前行,到达下一行,当前行所有指令都会立即执行
step into 执行当前行的指令,直到该行调用的第一个方法
force step into 与上类似,但还会进入外部定义方法,sdk中的
step out 完成当前方法中的所有指令,并跳出方法
show execution point 会把你带到执行暂停的点
条件断点:右键锚点设置
测试和分析
分析依赖; analyze | analyze dependencies
分析栈轨迹: analyze | analyze stacktrace
git 提交和拉取
vcs | import into version control |create git repository git init
ctrl+t pull
ctrl+k commit或push
ctrl+alt+a add