博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ADB使用笔记 (基础篇) - 2018年2月24日15:44:10
阅读量:4880 次
发布时间:2019-06-11

本文共 966 字,大约阅读时间需要 3 分钟。

参考文章  

本文总结自《Android群英传》- 徐宜生

1.ADB - Andorid Debug Bridge基础

adb version adb devicesadb shell  →   ls | grep "data"

2.常用命令

  • 显示系统中全部Android平台
android list targets
  • 安装Apk程序之install
adb install -r C:\Test.apk abd uninstall 包名
  • 安装Apk程序之Push
adb push C:\Test.apk /system/app/
  • 向手机写入文件
adb push C:\Test.apk /system/temp/
  • 从手机获取文件
adb pull /system/temp/test.jpg C:\fastwork\apps
  • 查看Log
logcat | grep "abc"
  • 查看系统盘符
adb shell df
  • 输出所有已安装的应用
adb shell pm list packages -f
  • 模拟按键输出
adb shell input keyevent 3 code: 82 menu ; 3  home  ; 19 up    ; 20 down ; 21 left ; 22 right ; 66 enter ; 4  back  .
  • 模拟滑动输入
adb shell input touchscreen swipe 18 665 18 350
  • 启动一个Activity
adb shell am start -n 包名/包名+类名
  • 录制屏幕
adb shell screenrecord /sdcard/demo.mp4
  • 截屏
adb shell screencap /sdcard/demo.png
  • 重新启动
adb reboot
  • 查看进程
查看全部 → adb shell ps
Linux → adb shell ps | grep com.art.exploration Windows → adb shell "ps|grep com.art.exploration"
  • 待续。。。

 提高篇 : 

转载于:https://www.cnblogs.com/jooy/articles/8466295.html

你可能感兴趣的文章
postman get和post结合
查看>>
CURL_SAFE_UPLOAD
查看>>
Android Studio下载安装
查看>>
Java 抽象类
查看>>
CSS3学习系列之边框
查看>>
android pendingIntent的理解
查看>>
Nuget 配置文件的位置
查看>>
Python之——python-nmap的安装与常用方法说明
查看>>
Add to List 136. Single Number (找到单独的数) by Python
查看>>
Java学习笔记-策略模式
查看>>
liunx总结题
查看>>
数据结构系列(5)之 红黑树
查看>>
面试题巩固
查看>>
如何用.net制作一个简易爬虫抓取华为应用市场数据
查看>>
LeetCode:路径总和【112】
查看>>
国内首个HTML5应用开发平台AppCan近期将公测
查看>>
多线程循环打印ABC10次
查看>>
有些事情如果现在不做,以后也不会做了
查看>>
nginx 服务器 在 centos7 系统下的两种方式
查看>>
有一列数的规则如下 1、1、2、3、5、8、13、21、34... 求第30位数是多少.写出相关函数和算法名称...
查看>>