android–ActivityManager.isUserAMonkey()方法有什么用?

android–ActivityManager.isUserAMonkey()方法有什么用?,第1张

概述参见英文答案>StrangefunctioninActivityManager:isUserAMonkey.Whatdoesthismean,whatisitsuse?                                    2个ActivityManager.isUserAMonkey()方法有什么用?ActivityManager.isUserAMonkey()解

参见英文答案 > 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()方法有什么用?所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1097239.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-28
下一篇 2022-05-28

发表评论

登录后才能评论

评论列表(0条)

保存