標籤:
1.查看當前手機介面的 Activity
dumpsys | grep "mFocusedActivity"
2.查看所有的包
pm list packages
查看關鍵字的包
pm list packages | grep "android" 或者(引號都可以不要) pm list packages "android"
3.查看應用的相關資訊 dumpsys package _package_name
dumpsys package com.example.coolweather.app
也可以用下面的命令,但是不是所有的機器上都能執行,推薦用第一種
pm dump com.example.coolweather.app
4.安裝和卸載應用
pm install 和 pm uninstall
5.查看apk檔案的安裝資訊 aapt dump badging _file_name.apk
aapt dump badging a.apk
6.啟動應用
am start -n com.android.settings/.Settings
am start -a android.intent.action.DIAL -d tel:10086
am start -a android.intent.action.SENDTO -d mailto:[email protected]
am start -a android.intent.action.VIEW -d http://www.baidu.com
am start -a android.intent.action.VIEW -d file:////mnt/sdcard/ttpod/song/nemo.mp3 -t audio/*
am start -a android.intent.action.VIEW -d "file:////mnt/sdcard/11/Bye Bye Beautiful.mp4" -t video/*
am start -a android.intent.action.VIEW -t image/* -d file:////mnt/sdcard/CGB/downloading_imgs/100000000325.png
參考:
http://blog.chinaunix.net/uid-20564848-id-74753.html
android 常用命令