Proper use cases for Android ActivityManager.isUserAMonkey()?
我在看安卓2.2中引入的新API。在查看ActivityManager类时,我遇到了以下方法:
public static boolean isUserAMonkey() Used to determine whether the user making this call is subject to teleportations.
Returns whether the user making this call is a monkey.
应如何以及何时使用?
根据安卓文档
1 | Returns"true" if the user interface is currently being messed with by a monkey. |
要知道应用程序是否正在使用monkey进行测试
如果你做一些自动测试,就会有测试用户。此方法检查当前用户是否是这样的测试用户。
关于如何使用它,已经有很多主题,请参见:点击