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.
基本的にデバイスのディスプレイをWindowsのセカンドディスプレイとして使用できるAndroidアプリ(個人用)を作成しようとしています。デバイスに送信する必要がある画像を取得する方法を見つけました。USBを介して(adbを使用して)2つを接続する方法を見つけました。現在、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