欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

android中adb命令最全總結(jié)

 更新時間:2021年07月27日 08:52:35   作者:autofelix  
本文主要介紹了android中adb命令最全總結(jié),文中通過示例代碼介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們可以參考一下

 一、查看adb版本

adb version

C:\Users\Administrator>adb version
Android Debug Bridge version 1.0.41
Version 30.0.4-6686687
Installed as E:\platform-tools\adb.exe

二、查看已經(jīng)連接的設(shè)備

adb devices

C:\Users\Administrator>adb devices
List of devices attached
127.0.0.1:7555  device

三、獲取手機序列號

adb get-serialno

C:\Users\Administrator>adb get-serialno
127.0.0.1:7555

四、查看手機設(shè)別型號

adb shell getprop ro.product.model

C:\Users\Administrator>adb shell getprop ro.product.model
Xiaomi

五、查看手機分辨率

adb shell wm size

C:\Users\Administrator>adb shell wm size
Physical size: 1440x810

六、獲取手機的mac地址

adb shell cat /sys/class/net/wlan0/address

C:\Users\Administrator>adb shell cat /sys/class/net/wlan0/address
08:00:27:7e:49:9c

七、查看日志

adb logcat

C:\Users\Administrator>adb logcat

八、查看電池信息

adb shell dumpsys battery

C:\Users\Administrator>adb shell dumpsys battery
Current Battery Service state:
  AC powered: true
  USB powered: false
  Wireless powered: false
  Max charging current: 2000000
  status: 2
  health: 2
  present: true
  level: 72
  scale: 100
  voltage: 4036
  temperature: 326
  technology: Li-poly

九、查看進程

adb shell ps

C:\Users\Administrator>adb shell ps
USER      PID   PPID  VSIZE  RSS   WCHAN            PC  NAME
root      1     0     2732   1272     ep_poll 08126b35 S /init
root      2     0     0      0       kthreadd 00000000 S kthreadd
root      3     2     0      0     smpboot_th 00000000 S ksoftirqd/0
root      5     2     0      0     worker_thr 00000000 S kworker/0:0H

十、查看cpu使用情況

adb shell top

C:\Users\Administrator>adb shell top

十一、安裝apk

  • apk文件需要放到你命令執(zhí)行的文件夾下,或者寫上apk的絕對路徑
  • adb install [apk文件的路徑]
C:\Users\Administrator>adb install douyin.apk
Performing Push Install
  • 多個設(shè)備安裝apk
  • adb -s [設(shè)備號] install [apk文件的路徑]
C:\Users\Administrator>adb -s 127.0.0.1:7555 install douyin.apk
Performing Push Install
  • 如果apk已經(jīng)存在,需要覆蓋安裝
  • adb install -r [apk文件的路徑]
C:\Users\Administrator>adb install -r douyin.apk
Performing Push Install

十二、卸載apk

  • 普通卸載
  • adb uninstall [apk文件的路徑]
C:\Users\Administrator>adb uninstall douyin.apk
  • 卸載但是保留數(shù)據(jù)
  • adb uninstall -k [apk文件的路徑]
C:\Users\Administrator>adb uninstall -k douyin.apk

十三、查看手機上所有安裝的app包名

adb shell pm list packages

C:\Users\Administrator>adb shell pm list packages
package:com.rxgx.xx.ldzw
package:com.tanwan.h5.xrxhj
package:com.xinxin.mobile.dsfh
package:com.xinxin.mobile.llwg
package:com.android.providers.telephony
package:com.xinxin.H5.jbdfhyc
package:com.ss.android.ugc.aweme

 十四、獲取某個應(yīng)用包名的啟動入口

  • adb shell dumpsys package com.ss.android.ugc.aweme | findstr activity
  • com.ss.android.ugc.aweme/com.ss.android.sdk.activity.BootstrapActivity 這個就是抖音的啟動入口
C:\Users\Administrator>adb shell dumpsys package com.ss.android.ugc.aweme | findstr activity
        ad29111 com.ss.android.ugc.aweme/com.ss.android.sdk.activity.BootstrapActivity

 十五、啟動某個app

adb shell am start -n [包名]/[啟動入口]

C:\Users\Administrator>adb shell am start -n com.ss.android.ugc.aweme/com.ss.android.sdk.activity.BootstrapActi
vity
Starting: Intent { cmp=com.ss.android.ugc.aweme/com.ss.android.sdk.activity.BootstrapActivity }

十六、屏幕截圖

adb shell screencap [保存路徑]

C:\Users\Administrator>adb shell screencap /sdcard/screen.png

十七、錄制視頻

adb shell screenrecord [保存路徑]

C:\Users\Administrator>adb shell screenrecord /sdcard/demo.mp4

十八、上傳文件到手機

adb push 文件名 手機端SDCard路徑

C:\Users\Administrator>adb push douyin.apk sdcard/douyin.apk

十九、從手機端下載文件

adb pull [手機上文件路徑]

C:\Users\Administrator>adb pull sdcard/douyin.apk

二十、模擬屏幕點擊事件

adb shell input tap x坐標(biāo)軸 y坐標(biāo)軸

C:\Users\Administrator>adb shell input tap 500 1450

二十一、模擬手勢滑動事件

adb shell input swipe 開始x軸 開始y軸 結(jié)束x軸 結(jié)束y軸 過程持續(xù)時間毫秒

C:\Users\Administrator>adb shell input swipe 100 500 100 1450 100

二十二、模擬點按鍵盤按鈕

adb shell input keyevent [key值]

C:\Users\Administrator>adb shell input keyevent 25

二十三、向屏幕輸入一些信息

  • db shell input text [字符串信息]
  • %s是空格
C:\Users\Administrator>db shell input text "insert%stext%shere"

二十四、發(fā)送廣播

adb shell am broadcast -a "broadcastactionfilter"

C:\Users\Administrator>adb shell am broadcast -a "broadcastactionfilter"

二十五、使用自帶瀏覽器打開網(wǎng)頁

adb shell am start -a [瀏覽器包名] -d [網(wǎng)址]

C:\Users\Administrator>adb shell am start -a "android.intent.action.VIEW" -d https://www.google.com

二十六、獲取手機root權(quán)限

adb vivoroot

C:\Users\Administrator>adb vivoroot

二十七、連接不穩(wěn)定時需要掛載

adb remount

C:\Users\Administrator>adb remount

二十八、重啟手機

正常重啟

C:\Users\Administrator>adb reboot

重啟手機到recovery

C:\Users\Administrator>adb reboot recovery

重啟到bootloader界面

C:\Users\Administrator>adb reboot bootloader

二十九、關(guān)閉adb服務(wù)

C:\Users\Administrator>adb kill-server

三十、啟動adb服務(wù)

C:\Users\Administrator>adb start-server

到此這篇關(guān)于android中adb命令最全總結(jié)的文章就介紹到這了,更多相關(guān)android adb命令 內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!

相關(guān)文章

最新評論