1. 程式人生 > >adb 常用命令

adb 常用命令

usb art list services devices 命令行 gpo oot 獲取

常用命令

示例

adb devices

列出設備

adb push/pull

(傳文件)

1、adb -s 設備名 push 本地文件 設備上的文件

2、adb -s 設備名 pull 設備上的文件 本地文件

adb forward

(端口轉發)

1、adb forward tcp:1080 tcp:1080

(將pc端1080端口的通信轉發到設備端1080端口)

adb start-server/kill-server

重啟server

adb install/uninstall

adb install apk包名

adb shell

1、adb -s 設備名 shell (登錄到設備的命令行)

adb get-seriaino

獲取設備ID和序列號serialNumber

adb get-state

查看模擬器/設施的當前狀態

adb [-d|-e|-s <serialNumber>] <command>

-d 發送命令給usb連接的設備

-e 發送命令到模擬器設備

-s <serialNumber> 發送命令到指定設備

adb reboot

重啟手機

adb remount

將system分區重新掛載為可讀寫分區

adb root

以root權限重啟adb服務

adb shell am

啟動應用程序

adb shell input text <string>

向設備輸入文本

adb shell input keyevent <event_code>

發送按鍵事件。

event_code=1 左滑

event_code=2 右滑

event_code=3 返回home

event_code=4 返回

。。。

adb shell procrank

各進程內存使用情況

adb shell service list

查看services信息

adb shell cat /proc/meminfo

查看當前的內存情況

adb shell cat /proc/cpuinfo

查看CPU信息(硬件)

adb shell cat /proc/iomem

查看IO內存分區

adb 常用命令