0

説明するために最善を尽くします。PC や Mac からデータを送受信する Android アプリを作成するのはどれほど簡単 (または難しい) でしょうか。フラッシュを使用するとなおさらです。

たとえば、最初に PC / Mac でフラッシュ アプリケーションを作成し、ステージ上に正方形のムービークリップがあるとします。その部分は以上です。次に、1 つのボタンで構成される android アプリを作成します。そのボタンを押すと(Androidアプリ、電話で)、フラッシュデスクトップアプリケーションの正方形が10ピクセルずつ右または左に移動します。

したがって、最終的にはモバイル アプリがデスクトップ フラッシュ アプリケーションを制御します。

検索して検索しましたが、探しているものを見つけるために実際に使用するキーワードがわかりません。

これがどれほど難しいか(可能であれば)、またはこの主題に関するドキュメント/チュートリアルについて誰かが光を当てることができますか?

4

2 に答える 2

1

You can use adb to accomplish this, which is how many of the tethering apps get around carrier restrictions. Here are some sources:

Adblib is a "library to communicate with android devices with TCP over USB without requiring the Android SDK": http://code.google.com/p/adblib/

Thread about Adb over USB: http://groups.google.com/forum/?fromgroups=#!topic/android-developers/JsDTBimHpOA

adb itself: http://developer.android.com/tools/help/adb.html


Here are some other links to some other Android USB topics:

http://developer.android.com/tools/adk/index.html

http://developer.android.com/guide/topics/connectivity/usb/host.html

http://developer.android.com/guide/topics/connectivity/usb/accessory.html

http://developer.android.com/reference/android/hardware/usb/UsbInterface.html

http://developer.android.com/sdk/win-usb.html

于 2012-12-21T22:44:21.177 に答える