LDCodes
LDCodes

Reputation: 45

Android- put a call on hold and add new call

I would like to write an app that will put the current call on hold, then add a new call. Since this can be done by manually pressing buttons, I would think there is a way to do it programmatically, but I cannot find anything in the sdk.

TIA

Upvotes: 1

Views: 3044

Answers (1)

Ryan Conrad
Ryan Conrad

Reputation: 6900

Since the Phone.apk can't compile directly from the android SDK because it uses objects and methods that are not publicly available in the SDK, you would probably have to build an app as part of the "platform" so you can have access to the same objects and methods that an app like Phone.apk does.

Upvotes: 1

Related Questions