ARTICLE DETAIL

建站实战干货

来自一线的建站与推广经验沉淀,每一条都经过真实交付验证。

ADB命令-Android-2

2026/8/18 22:40:53 拓冰建站 浏览量
ADB命令-Android-2
    1. adb shell logcat -v time threadtime > 1.log 打印android log(带线程信息)
    1. adb shell logcat -v time |grep -E "camera|lcd" 打印android log检索多个关键字
    1. adb shell logcat -v time |findstr /c:"" 打印android log检索单个关键字
    1. adb shell screencap -p sdcard/01.png 截屏
    1. adb shell screenrecord /sdcard/record.mp4 录像
    1. adb shell getprop ro.build.id 查看版本号
    1. adb shell getprop ro.build.type 查看user或者debug版本
    1. adb shell getprop ro.product.model 查看产品名称
    1. adb shell getprop ro.build.version.release 查看android版本号
    1. adb shell getprop ro.kernel.version 查看内核版本
    1. adb shell top 持续监视进程信息
    1. adb shell ps -ef |grep "camera" 查看camera进程的瞬间信息
    1. adb shell kill -9 进程号 强制kill进程
    1. adb shell getenforce 查看selinux状态
    1. adb shell setenforce 0 关闭selinux
    1. adb shell ps -Z 查看进程上下问题
    1. adb shell ls -lZ 查看文件上下文
    1. adb shell getprop -Z 查看属性上下问题
    1. adb shell dumpsys media.camera dump 相机信息
    1. adb shell dumpsys window dump窗口服务信息
    1. adb shell dumpsys battery 查看电池信息:百分比、电压、温度等