淘先锋技术网

首页 1 2 3 4 5 6 7

adb常用命令
https://blog.csdn.net/wangjiang_qianmo/article/details/84104934?utm_medium=distribute.pc_aggpage_search_result.none-task-blog-2allfirst_rank_v2~rank_v25-5-84104934.nonecase&utm_term=adb%20%E8%BF%94%E5%9B%9E

1、返回上一个界面
adb shell input keyevent BACK
2、 卸载包
adb uninstall {your package name}
3、获取手机分辨率
adb shell wm
4、启动Activity/Broadcast/Service
通过Activity名字启动应用程序Activity
adb shell am start {your package name} / {your activity}
例:adb shell am start com.android.settings/com.android.settings.Settings // 打开设置页面
5、Android 调试指定用户
获取所有用户的列表

  adb shell pm list users
创建新用户
adb shell pm create-user User_Name
指定用户做出动作 
     指定用户安装应用
      adb install --user 10 -r -d  '/the/apk/path/debug.apk'
     指定用户卸载应用
    adb uninstall --user 10   com.xxx.xxx
     指定用户打开Activity
adb shell am start --user 10 -n the.package.name/.MainActivity