《Android 群英传》——读书笔记
- IDE (Integrated Development Environment)——集成开发环境
- 最新的Android开发IDE——Android Studio
一、Android开发IDE介绍
- Google 在2013年的I/O大会上发布了——Android Studio
1、Android Studio初体验
2、Android Studio配置
- 不做记录
二、Android Studio高级使用技巧
1、更新SDK
2、Android Studio常用界面
3、导入Android Studio工程
三、ADB 命令使用技巧
- ADB——Android Debug Bridge
1、ADB基础
2、ADB常用命令
-
显示系统中全部Android平台:android list targets
-
安装apk程序之Install: adb install -r 应用程序.apk
-
安装apk程序之Push(向手机写入文件): adb push <local> <remote>
如:C:\Users\Administrrator>adb push D:\Test.apk/System/app/
安装的区别:install——安装到手机的data/data目录下,作为应用程序
push——将一个文件写入手机的存储系统,而非安装命令
-
从手机中获取文件:adb pull <remote> <local>
-
查看Log:adb shell
-
删除应用:adb remote
adb shell
cd system/app
rm X.apk -
查看系统盘符:adb shell df
-
输出所有已经安装的应用:adb shell pm list packages -f
-
模拟按键输入:adb shell input keyevent 执行的code
-
模拟滑动输入:adb shell input touchscreen <x1> <y1> <x2> <y2>
adb shell input touchscreen swipe 18 665 18 350 -
查看运行状态:adb shell dumpsys
-
Package 管理信息:pm list packages -f
-
AM管理信息:adb shell am start -n
-
录制屏幕:adb shell screenrecord/sdcard/demo.mp4
-
重新启动:adb reboot
3、ADB命令来源
- \system\core\toolbox 以及 \frameworks\base\cmds
4、模拟器使用与配置
- 介绍了Genymotion
网友评论