[android-developers] Re: obtaining an IPhone.Stub

2008-10-23 Thread dreamerBoy
Yeah, saw that. If you read it carefully, there's no way to place an outgoing call. The damn API changed... I believe the answer I was looking for was http://code.google.com/android/reference/android/content/Intent.html ACTION_CALL I'm still a bit unclear on the entire picture. I guess the

[android-developers] Re: obtaining an IPhone.Stub

2008-10-23 Thread hackbod
Yes, you place an outgoing call by starting an activity with the CALL intent. There is nothing in the background catching this -- it is just launching the call activity (which then talks with the telephony system, sends broadcasts, etc to finally get in to a call). This is actually all the old

[android-developers] Re: obtaining an IPhone.Stub

2008-10-22 Thread hackbod
These are not public APIs. The telephony APIs are here: http://code.google.com/android/reference/android/telephony/package-summary.html On Oct 22, 1:38 pm, dreamerBoy [EMAIL PROTECTED] wrote: Hi - I need to be able to place outgoing calls and interact with IPhone. This apparently, ~was~