adb 啟動Android 應用元件

2021-10-24 03:28:52 字數 1302 閱讀 5076

adb 啟動android 應用元件

啟動服務

adb shell am startservice -n 包名/

.mainservice

啟動activity

adb shell am start -n 包名/包名.mainactivity
關閉應用

adb shell am force-stop 包名
啟動系統設定

adb shell am start com.android.settings/com.android.settings.settings
adb控制移動資料開啟/關閉

開啟移動資料

adb shell svc data enable
關閉移動資料

adb shell svc data disable

adb命令指令控制android系統的wifi連線開啟/關閉狀態

1.在cmd中,進入shell指令模式

adb shell
2.進入root指令模式

su
開啟wifi指令

svc wifi enable
關閉wifi指令

svc wifi disable
adb獲取activity/fragment資訊
adb shell dumpsys activity top >c:\users\tom\desktop\a.txt

adb shell dumpsys activity 包名

adb獲取當前頁面的ui層次布局檔案
adb shell uiautomator dump /sdcard/ui.xml
adb 啟動android camera
adb shell am start -a android.media.action.still_image_camera 啟動camera

adb shell input keyevent 27

//camera 鍵

adb shell input keyevent 4

//back 鍵

參考:

adb 傳送廣播,啟動應用

1.傳送廣播 adb shell am broadcast 後面可新增的引數有 a d t c c e es ez e ei n f 例如 adb shell am broadcast a com.android.test es test string this is test string ei ...

Android應用啟動耗時

android應用啟動時間可以直接使用adb命令來獲取 adb shell am start w n 應用包名 應用啟動activity名 但是,很多時候我們無法獲知應用的包名和應用啟動的activity名。這時我們採用乙個比較穩妥的方式 1.獲取應用包名 2.獲取安裝包所在路徑 3.安裝包adb ...

adb鏈結手機除錯android應用

adb鏈結手機除錯android應用 hulk hulk lenovo adb devices list of devices attached no permissions 切換到root許可權目錄下 hulk hulk lenovo su 密碼 root hulk lenovo home hul...