在開發過程當中使用到的adb命令會慢慢的加在這下面:shell
adb shell
進入sdcard
adb kill-server
殺死adb進程
adb start-server
啓動adb進程
adb pull/push <source-path> <target-path>
經過adb命令從sd卡拉\推文件
adb shell am broadcast -a <action> -e <param_key> <param_value>
發送廣播,<action> 對應的action, <param_key>是參數,<param_value>是參數對應的值,多個參數直接加在後面,調試頗有用 spa