i have tried many things but not getting how to do conferencing in android.
i can receive incoming call and make another outgoing call...but not able to combine those calls as "menu option merge do"...
if i can take object reference of phone or call class(internal class of android) i can use conference method available theres
AFAIK, there is no API for this in the Android SDK, sorry.
Related
In Android, they have this new API called InCallService where you can get call events and for each call object you can do some action. I'm looking for equivalent in iOS. In iOS, I wanted to do the achieve the same thing specifically for outgoing call also. In iOS there is CXCallObserverDelegate protocol but in this case I can only get UUID of the call that's all I can get. I'm not able to do any additional action for the call. I wanted to execute DTMF tone once the call is active but it is not possible. In CallKit there is cxaction called CXPlayDTMFCallAction but this only applies for VOIP application and what I need is to execute the dtmf for gsm calls. Does anybody have any solution for here?
we want to use conference calling in our app we managed to make a call but we are not able to make a conference call .
we tried to sipcoudiocall.attachCall(sipSession,sessionDescription);
but we are not able to make conference call can you help.
I want to implement Call conferencing in android, for this I am trying to call RILD functions from my android code, but not able to get the way of how to call RILD functions. I know how to call c and c++ functions from android using NDK, I also got RIL source code from here : Ril
For become more specific, I want to implement call conferencing when I am in call with some one and at the same time I got call from a specific number, so I will detect that specific number via applying call receivers and will try to call c and c++ functions of RILD via java code for implement call conferencing.
Please tell me the way of implementing call conferencing in android by calling RILD.
Call conferencing is a modem feature. There are APIs in the Android framework which are called when conference calling is activated. Call conferencing would work if the relevant APIs are implemented in the RIL. Here are a few APIs for conference calling:
RIL_REQUEST_CONFERENCE
RIL_REQUEST_HANGUP_WAITING_OR_BACKGROUND
RIL_REQUEST_HANGUP_FOREGROUND_RESUME_BACKGROUND
For detailed information, you can visit the following link: https://github.com/mozilla-b2g/android-hardware-ril/blob/master/include/telephony/ril.h
Hope this helps :)
Hi in my Application i want to hang up the call for the specific number.i have go through many link but can't get any success,here is one of that,in many place a lot of developer told that com.android.internal.telephony.ITelephony is not working on higher version of android.
How to hang up outgoing call in Android?
but i found that this Api is available but how to use that.
http://www.androidjavadoc.com/0.9_beta/com/android/internal/telephony/ITelephony.html
Please help me how to hang up a call.
Is this possible to call more than one people at the same time . i.e. conference calling.
This should be done by an application not by the default method of conference calling provided by Android.
At the same time can i call more than 1 person?
There is no API supporting this, as far as I know.