参见英文答案 > Strange function in ActivityManager: isUserAMonkey. What does this mean, what is its use? 2个
ActivityManager.isUserAMonkey()方法有什么用?
ActivityManager.isUserAMonkey()
解决方法:
它会告诉您用户是测试猴子还是猴子跑者.
“Monkey是一个命令行工具,您可以在任何仿真器实例或设备上运行.它会将伪随机的用户事件流发送到系统中,作为您正在开发的应用程序软件的压力测试“.
你可以像这样使用它:
public boolean wasItTheMonkey(){ ActivityManager activityManager = (ActivityManager)getSystemService(Context.ACTIVITY_SERVICE); if(activityManager.isUserAMonkey()) { Log.d(TAG,"it was the monkey"); return true; } Log.d(TAG,"it was an user"); return false;}
见here.
总结以上是内存溢出为你收集整理的android – ActivityManager.isUserAMonkey()方法有什么用?全部内容,希望文章能够帮你解决android – ActivityManager.isUserAMonkey()方法有什么用?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)