On Jun 3, 8:34 pm, Roger Li <[email protected]> wrote: > I am struggling to find a solution for the project. > The project is used to record the operations in mobile and then play back.
This is not really supported by stock android devices. You can use the ddms screenshot capability to record a low-frame rate video of what the user is seeing, though you will have to guess at what touch and button events prompted changes. There's a pc-side java app floating around on the web for doing that. Or you can modify (as in custom rom, or at least root) the device and have it report things that are not normally visible to 3rd party code, such as touch events to arbitrary applications. Doing so would not be on topic for this (sdk) developer group - the only variation that would be would be instrumenting applications you yourself develop to report input events. If the applications of interest will run reasonably on the emulator, you might do that and configuring the hosting machine to do recording. The emulator is also "rooted by default" if you want to try safely modifying the platform. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

