Search code examples
androidscreenscreenshotadbddms

How to access screen capture function of DDMS by IP


Looking for a program, or, if it doesn't exist, a way to capture the screen of an Android-based device (proprietary touch-remotes) by entering the IP address of the device.

Anyone know of something that could do this for me or, if not, what I might need to do to package up something that could do this?


Solution

  • EDIT: Actually, I ended up writing a simple C++ program that asks for an IP address in a console window, does command "adb connect " with the input IP address, thus establishing a connection via ADB to a device at a specified IP address, and then the C++ program starts up "Droid@Screen" software. Since the ADB is already started, the program will simply display whatever is coming in from the ADB! I have a feeling other 3rd party programs would work too.