1.adb kill-server //对其运行了的服务通过此命令对其杀死
2.adb connect ip //连接相关设备的ip
3.adb install 具体路径 //安装一个apk
4.adb shell am start -n com.example.test1/com.example.test1.MainActivity //运行/启动apk
5.adb uninstall 包名 // 卸载apk
6.adb ddms //打开一个新的ddms
7.adb pull /data/data/com.example.jsondata/files/jsondata.txt E:/ // 将一个文件复制到E盘
8.adb shell am startservice --user 0 -a com.example.service.MyService // 启动服务
9.adb shell am start -n com.android.settings/com.android.settings.Settings //调出系统的设置