Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试制作一个 Android 应用程序(供私人使用),它基本上允许我将设备显示屏用作 Windows 的第二个显示屏。我想出了如何获取我必须发送到设备的图像。我想出了如何通过USB(使用adb)连接两者。现在,我不知道如何通过我的 TCP 套接字实际发送图像数据。是否有任何现成的图书馆,或者有没有人已经这样做并且可以帮助我?
如果您只需要在设备上显示图像,我会这样做:
$ adb push img.png /mnt/sdcard/img.png $ adb shell am start -a android.intent.action.VIEW -t image/png -d file:///mnt/sdcard/img.png