1

[DDMSエミュレーターの制御]タブに多くのことがあります。DDMSからの呼び出しを発信/シミュレートしたいだけです。どうやってするか。また、[エミュレータ制御]タブの詳細はどこにありますか?ありがとう

4

5 に答える 5

4

電話をシミュレートするように呼び出しますか?

1 ウィンドウ > パースペクティブを開く > DDMS

2 「エミュレータ制御」タブ

3 テレフォニー アクションで、[着信番号] テキストフィールドに任意の番号を入力します。

4 2 つのラジオボタンから「音声」を選択します。

5 最後に をクリックしCallます。

切断するには、 をクリックしますHang up

詳細はこちら

お役に立てれば...

于 2012-10-12T13:44:18.853 に答える
1

エミュレータを呼び出すための適切な回答が得られたと思います。リンクで Emulator Control タブの詳細を参照してください:
http://developer.android.com/tools/debugging/ddms.html#ops-location

于 2013-01-25T09:47:59.563 に答える
0

telnet経由でDDMSジョブを実行できます。

CMDと入力します。

  1. telnet
  2. ローカルホスト5554を開きます
  3. SMSは000000こんにちはを送信します

使用可能なコマンドのリスト:

   event            simulate hardware events
   geo              Geo-location commands
   gsm              GSM related commands
   cdma             CDMA related commands
   kill             kill the emulator instance
   network          manage network settings
   power            power related commands
   quit|exit        quit control session
   redir            manage port redirections
   sms              SMS related commands
   avd              control virtual device execution
   window           manage emulator window
   qemu             QEMU-specific commands
   sensor           manage emulator sensors
于 2012-10-12T13:11:15.133 に答える
0

必要な情報がすべて記載されているDDMS の使用を参照してください。

于 2012-10-12T12:59:07.073 に答える
0

DDMS 以外に、もう 1 つのオプションがあります。

エミュレーターは、シミュレートされた音声通話をあるインスタンスから別のインスタンスに自動的に転送します。音声通話を送信するには、エミュレーターの 1 つからダイヤラー アプリケーション アプリケーションをそれぞれ使用します。

別のエミュレータ インスタンスへのシミュレートされた音声通話を開始するには:

1.Launch the dialer application on the originating emulator instance.
2.As the number to dial, enter the console port number of the instance you'd like to call. You can determine the console port number of the target instance by checking its window title, where the console port number is reported as "Android Emulator (<port>).
3.Press "Dial". A new inbound call appears in the target emulator instance.
于 2015-09-10T10:05:52.963 に答える