当前位置:Gxlcms > 数据库问题 > adb 常用命令

adb 常用命令

时间:2021-07-01 10:21:17 帮助过:24人阅读

#以下指令必须以root权限运行

#setprop 是指set properties,用法 setprop
setprop service.adb.tcp.port 5555
stop adbd #停止adbd
start adbd #启动adbd

ifconfig
获得的IP地址为192.168.1.102

计算机:连接手机
adb connect 192.168.1.102:5555

检查是否成功
adb get-state
应当输出device或者emulator-5555,这取决于你的设置。

改回原先状态(通过USB连接)
setprop service.adb.tcp.port -1 stop adbd start adbd

 

adb shell am start -a android.media.action.STILL_IMAGE_CAMERA 启动camera
adb shell input keyevent 27 //camera 键
adb shell input keyevent 4 //back 键

前置摄像头
adb shell am start -a android.media.action.IMAGE_CAPTURE --ei android.intent.extras.CAMERA_FACING 1
后置摄像头
adb shell am start -a android.media.action.IMAGE_CAPTURE --ei android.intent.extras.CAMERA_FACING 0

adb 常用命令

标签:input   摄像头   常用命令   strong   root权限   image   top   计算   adb   

人气教程排行