zoukankan      html  css  js  c++  java
  • android抓日志

    1. adb logcat -c 清楚以前的日志
    adb logcat -s 过滤 adb logcat -s *:E
    adb logcat -v 指定输出的格式 adb logcat -v brief
    ====
    brief — Display priority/tag and PID of originating process (the default format).
    process — Display PID only.
    tag — Display the priority/tag only.
    thread — Display process:thread and priority/tag only.
    raw — Display the raw log message, with no other metadata fields.
    time — Display the date, invocation time, priority/tag, and PID of the originating process.
    long — Display all metadata fields and separate messages with a blank lines.
    =======
    adb logcat -f filename: 输出到文件
    
    2.
    启动的方法为
    # am start -n 包(package)名/包名.活动(activity)名称
    启动的方法可以从每个应用的AndroidManifest.xml的文件中得到
    Music 和 Video(音乐和视频)的启动方法为:
    # am start -n com.android.music/com.android.music.MusicBrowserActivity
    # am start -n com.android.music/com.android.music.VideoBrowserActivity
    # am start -n com.android.music/com.android.music.MediaPlaybackActivity
    Camera(照相机)的启动方法为:
    # am start -n com.android.camera/com.android.camera.Camera
    Browser(浏览器)的启动方法为:
    # am start -n com.android.browser/com.android.browser.BrowserActivity
    启动浏览器 :
    am start -a android.intent.action.VIEW -d  http://www.google.cn/
    拨打电话 :
    am start -a android.intent.action.CALL -d tel:10086
    启动 google map 直接定位到北京 :
    am start -a android.intent.action.VIEW geo:0,0?q=beijing
    模拟低电量
    adb shell am broadcast -a android.intent.action.BATTERY_CHANGED --ei "level" 3 --ei "scale" 100
    
    3. GAT 工具抓包
  • 相关阅读:
    bootstrap之按钮和图片
    bootstrap之表单
    bootstrap之表格
    bootstrap+html5+css3
    网站链接
    linux下查看和添加PATH环境变量
    安装Memcache的PHP扩展
    ./configure
    如何学习前端?
    实战深度学习(下)OpenCV库
  • 原文地址:https://www.cnblogs.com/jinjiangongzuoshi/p/5002749.html
Copyright © 2011-2022 走看看