Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I found the following function in package android.app.ActivityManager.

public static boolean isUserAMonkey ()

The reference describes:

public static boolean isUserAMonkey ()   Since: API Level 8

Returns "true" if the user interface is currently being messed with by a monkey.

I was shocked by this strange function. And have a few questions.

  • What does this (user interface is currently being messed with by a monkey) mean?

  • What is the practical use of this function?

  • Why do they use isUserAMonkey for the function name?

share|improve this question
There is no proper documentation. Then how can we use the function. They should get review on their documentation. – mahe madhi Dec 31 '11 at 7:21
according to answer by HefferWolf, this method is used for some automatic testing of android framework (i think), so we do not need to use this function at all.. so no need of PROPER documentation. – gt_ebuddy Dec 31 '11 at 11:51
Shock the monkey – Jeff Axelrod Oct 4 '12 at 1:35

2 Answers

up vote 23 down vote accepted

This method is for checking wether the current user is a test user by some automatic testing.

share|improve this answer
7  
Exactly. It's worthwhile seeing this page: developer.android.com/guide/developing/tools/monkey.html – Kibi Dec 13 '11 at 15:41

The Monkey is a program that runs on your emulator or device and generates pseudo-random streams of user events such as clicks, touches, or gestures, as well as a number of system-level events. You can use the Monkey to stress-test applications that you are developing, in a random yet repeatable manner.

    just refer this link also...

    http://developer.android.com/tools/help/monkey.html
    http://stackoverflow.com/questions/9869488/what-is-the-use-of-
    activitymanager-isuseramonkey-method
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.