zoukankan      html  css  js  c++  java
  • adb shell 常用命令

    未完待续...

    • adb shell input
      • adb shell input tap <x> <y>        点击
      • adb shell input keyevent <keycode>        按键
      • adb shell input swipe <x> <y> <x> <y>        滑动
      • adb shell input swipe <x> <y> <x> <y> <time>        长按屏幕
      • adb shell input text 123456  输入

    • adb shell screencap /sdcard/screen.png        
    • adb shell top        
      • adb shell top -m 10 -s cpu        
      • adb shell top -d 1        
    • adb shell pm list packages
    • adb shell getprop ro.build.version.release
    • adb shell dumpsys package packageName
    • adb shell dumpsys package packageName | findstr versionName
    • adb shell wm size
    •  adb shell dumpsys battery
    • adb shell ps
    • adb shell am force-stop com.linsen.itally
    • adb shell am start -W com.linsen.itally/.ui.WelcomeActivity
    • adb logcat | findstr START
    • adb shell dumpsys
    • adb shell ps | findstr com.linsen.itally
    • adb shell cat /proc/2413/net/dev
    • adb shell dumpsys battery
    • adb shell dumpsys battery set status 1
    • adb shell dumpsys battery reset
  • 相关阅读:
    code review
    设计原则
    知识点介绍
    REST API
    第四章 模块化React和Redux应用
    第3章 从Flux到Redux
    第二章 设计高质量的React组件
    React和Jquery比较
    第一章 React新的前端思维方式
    封装一个获取module.exports内容的方法
  • 原文地址:https://www.cnblogs.com/hereisdavid/p/13759605.html
Copyright © 2011-2022 走看看