有没有办法通过ADB锁定Android屏幕?
我找到了在apk中锁定显示的方法,但是我想通过ADB从PC锁定屏幕,以模拟显示超时,而不必等待超时。
是否可以这样做?
谢谢, 戴安
答案 0 :(得分:65)
很酷,我刚发现KEYCODE_POWER
是26岁。
所以通过发送:
adb shell input keyevent 26
如果屏幕解锁,会锁定屏幕。如果屏幕已锁定,则会唤醒设备。
我的猜测是确保屏幕被锁定(关闭)的唯一方法是解锁(我们使用keyevent 82(菜单),然后用电源按钮keyevent将其锁定。有没有人知道这是否是真?
答案 1 :(得分:15)
adb shell input keyevent 82 # unlock
我已使用我想要唤醒的各个设备(平板电脑)的坐标更新了shell脚本。我的平板电脑不支持锁屏事件的方向更改,因此值始终有效,因为锁屏始终处于横向状态。如果您需要方向更改检测,只需选择一个简单的if / then / else即可选择用于方向的正确坐标。
#!/bin/bash
if [ "$(adb shell dumpsys power | grep mScreenOn= | grep -oE '(true|false)')" == false ] ; then
echo "Screen is off. Turning on."
adb shell input keyevent 26 # wakeup
adb shell input touchscreen swipe 930 380 1080 380 # unlock
echo "OK, should be on now."
else
echo "Screen is already on."
echo "Turning off."
adb shell input keyevent 26 # sleep
fi
答案 2 :(得分:9)
这里有一个单一的bash脚本中的整个内容,用于检查屏幕是否实际开启,然后唤醒和一次性解锁屏幕:
if [ "$(adb shell dumpsys power | grep mScreenOn= | grep -oE '(true|false)')" == false ] ; then
echo "Screen is off. Turning on."
adb shell input keyevent 26 # wakeup
adb shell input keyevent 82 # unlock
echo "OK, should be on now."
else
echo "Screen is already on."
fi
答案 3 :(得分:5)
您已经找到了解决方案,但无论如何我都会将此代码放在此处供参考。
您可以做的是注入事件以“按下”电源按钮两次。如果您不知道设备的状态(显示开/关),请检查屏幕当前是打开还是关闭,然后相应地按下电源按钮。
这是一个简单的monkeyrunner脚本:
import re
from java.util import *
from com.android.monkeyrunner import MonkeyRunner, MonkeyDevice
device = MonkeyRunner.waitForConnection() # connect to a device
device.shell("input keyevent KEYCODE_POWER") # turn screen off (or on?)
res = device.shell("dumpsys power") # fetch power state
m = re.search(r'.*mPowerState=([0-9]+).*', res) # parse the string
if m and int(m.group(1)) == 0: # screen is off
device.shell("input keyevent KEYCODE_POWER") # turn the screen on
答案 4 :(得分:2)
除了以前的答案之外,这里是我使用adb锁定/解锁屏幕的方法:
adb shell input keyevent 26
将锁定屏幕
因此,如果再次执行该命令,则在屏幕关闭/锁定时,它将被打开/解锁
adb shell input keyevent 26
也会解锁屏幕(如果屏幕被锁定)。
此外,我还测试了所有命令,例如adb shell input keyevent number
,并发现adb shell input keyevent 3
也解锁了设备。
我还发现(通过测试)键3是主页按钮。因此,如果您有物理主页按钮(而不是屏幕上的软主页按钮),您也可以使用它来解锁设备。
答案 5 :(得分:1)
对于使用早期版本的android (至少4.2+)的用户,dumpsys power
具有不同的输出。
我没有使用mPowerState=
作为@Jakub Czaplicki给出的答案,而是使用了mScreenOn=
。
p = Runtime.getRuntime().exec("su", null, null);
OutputStream o = p.getOutputStream();
o.write(("dumpsys power").getBytes("ASCII"));
o.flush();
o.close();
p.waitFor();
boolean screenState;
BufferedReader in = new BufferedReader(new InputStreamReader(p.getInputStream()));
while ((res = in.readLine()) != null) dump += res;
screenState = dump.charAt( dump.indexOf("mScreenOn=") + 10 ) == 't';
screenState
true
(屏幕 )或false
(屏幕关闭强>)
答案 6 :(得分:1)
您可以使用以下命令触发显示ON。 adb shell输入keyevent POWER
我试过并在我的项目中使用,希望它对你有用。
这是我使用的ruby代码:
def ScreenCheck()
system("adb shell dumpsys power > c:/interact.log")
File.open("C:\\interact.log").each do |line|
if line[/mScreenOn/]
if line.strip == "mScreenOn=true"
p "Screen is On, Starting execution.."
else
p "Screen is Off, starting screen.."
system("adb shell input keyevent = POWER")
p "Starting execution.."
end
end
end
end
答案 7 :(得分:0)
这是一个打开/关闭每个连接设备屏幕的脚本,包括任何棒棒糖前设备。我在运行任何连接的Android测试之前就在我的Jenkins服务器上使用它,以确保设备准备就绪。希望有人觉得这很有用!
#!/bin/sh
# Returns the power state of the screen 1 = on, 0 = off
getDisplayState() {
state=$(adb -s $1 shell dumpsys power | grep mScreenOn= | grep -oE '(true|false)')
# If we didn't get anything it might be a pre-lollipop device
if [ "$state" = "" ]; then
state=$(adb -s $1 shell dumpsys power | grep 'Display Power' | grep -oE '(ON|OFF)')
fi
if [ "$state" = "ON" ] || [ "$state" = "true" ]; then
return 1;
else
return 0;
fi
}
echo "Turning on screen on all connected devices..."
for device in `adb devices | grep device$ | cut -f1`
do
echo -n "Found device: $device ... "
getDisplayState $device
state=$?
# If the display is off, turn it on
if [ $state -eq 0 ]; then
echo "display was off, turning on"
adb -s $device shell input keyevent 26
else
echo "display was on"
fi
done