本文介绍了葫芦Android的:如何发送应用到后台(模拟装置/硬件主页按钮)?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
有没有办法在葫芦的Android,我可以把我的应用程序的背景是什么?换句话说,模拟设备/硬件主页按钮?
其次,可以在应用程序被带回到前台?
解决方案
这可以通过以下方式进行:
然后/ ^我回家$ /做
系统#{default_device.adb_command}壳输入KeyEvent的主要code_HOME
结束
附:您还可以添加睡眠< some_value_in_seconds>
如果需要的话,以后系统...
行
Is there a way in Calabash Android where I can send my app to the background? In other words, simulate the device/hardware Home button?
Secondly, can the app be brought back into the foreground?
解决方案
This can be done in the following way:
Then /^I go home$/ do
system "#{default_device.adb_command} shell input keyevent KEYCODE_HOME"
end
P.S. You can also add sleep <some_value_in_seconds>
if necessary, after system "..."
line.
这篇关于葫芦Android的:如何发送应用到后台(模拟装置/硬件主页按钮)?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!