Questions tagged [in-call]
27 questions
25
votes
3 answers
Sending DTMF tones over the uplink in-call
I'm working on a project that requires my app to be able to send DTMF tones on the voice's uplink frequency during an active call.
My 2 conditions are:
We don't use a customized Android platform
We don't need to root the phone
I've spent several…

Simon McCorkindale
- 251
- 1
- 3
- 3
21
votes
3 answers
How In-Call status bar impacts UIViewController's view size?
I'm trying to understand how the view associated to a UITabBarController, UINavigationController or UIViewController reacts when the in-call status bar is toggled.
My trouble is that they seem to behave differently and this causes me side…

yonel
- 7,855
- 2
- 44
- 51
19
votes
8 answers
UIViewController In-Call Status Bar Issue
Issue:
Modally presented view controller does not move back up after in-call status bar disappears, leaving 20px empty/transparent space at the top.
Normal : No Issues
In-Call : No Issues
After In-Call Disappears:
Leaves a 20px high…

Gizmodo
- 3,151
- 7
- 45
- 92
19
votes
2 answers
Detecting if user has in call status bar
How do I detect if user is in-call or tethering? I have a subview for iAd like this:
_UIiAD = [[self appdelegate] UIiAD];
_UIiAD.delegate = self;
[_UIiAD setFrame:CGRectMake(0,470,320,50)];
[self.view addSubview:_UIiAD];\
And it sets it wrong when…

user3647176
- 201
- 1
- 2
- 6
10
votes
2 answers
How to show double height green statusbar (In-Call) in foreground app on device?
There's a lot of questions here asking for displaying a red recording bar while in background. It's totally clear I should use AVAudioSession category AVAudioSessionCategoryPlayAndRecord for that. My question is how can I display a green In-Call bar…

Sega-Zero
- 3,034
- 2
- 22
- 46
9
votes
1 answer
Custom UIViewController transition set a wrong topLayoutGuide and bottomLayoutGuide when in-call bar is active
I have a UIViewController presenting another UIViewController.
Both view controllers use topLayoutGuide and bottomLayoutGuide with Auto-Layout.
Everything is fine, with and without in-call bar. Or with or without custom transition...
But, when there…

Tancrede Chazallet
- 7,035
- 6
- 41
- 62
8
votes
2 answers
iOS in-call status bar update viewcontroller presented modaly on screen
I'm afford to ask this question because after large research almost 2days of Googling, Stack Overflowing, etc...
My issue is this: I'm presenting ViewController from my main ViewController like this:
UINavigationController *navigation =…

Shial
- 1,386
- 19
- 31
4
votes
1 answer
iOS SDK. Show In-Call status bar
Any one know how to show In-Call Status Bar with message from application when it is going to be in background? I know many applications from AppStore which can perform it. For instance: http://myevoz.com/. As I understood, they use SBStatusBar…

VictorT
- 783
- 10
- 20
4
votes
0 answers
How to show In call status Bar(double height) for Voip Application with green color in iOS?
I am developing an app based on sip calling and I want to send call in background if any one starts call and comes out of application .In that case I want to display call duration on screen .For that that I am using in_call status bar.But the code I…

Vikas Goyal
- 41
- 4
3
votes
1 answer
In-call status bar enforces a black bar - iOS
When the viewcontroller overrides prefersStatusBarHidden and is set to be true. When there is a in-call status bar, there is a black bar on the top. Is there way to avoid this?

Siddharthan Asokan
- 4,321
- 11
- 44
- 80
3
votes
1 answer
Tap area of UIButtons changes when in-call status bar is visible
UPDATE 2
My suspicious were correct. The problem was in the animations because I didn't took into consideration the origin of the Y axis which was different when the in-call status bar was visible. I'll add an answer showing the relevant code as…

goldengil
- 1,007
- 9
- 25
3
votes
1 answer
Handling application:willChangeStatusBarFrame:
In my app, I handle the change of the status bar frame by simply scaling the entire window to fit it in the remaining screen space:
- (void)application:(UIApplication *)application willChangeStatusBarFrame:
(CGRect)newStatusBarFrame {
…

eric.mitchell
- 8,817
- 12
- 54
- 92
2
votes
0 answers
Programmatically using the in-call number-pad while in a call
While I understand that this sort of question has been asked a few times, none of the answers that have been presented have been satisfactory for my needs and so I would like to ask all of you:
While in a call, is it possible to activate a number on…

Mailbox
- 21
- 1
2
votes
0 answers
InCallService - Not working in Android Nougat
I used InCallService to replace default call service,
It is working fine in Android 6 (Marshmallow).
But, in Samsung S8 with Android Nougat (version 7.0) not working.
Doesn't get any call back of InCallService.
Do I need any additional permissions…

Vineesh TP
- 7,755
- 12
- 66
- 130
2
votes
0 answers
Programmatically muting a call in Android
I am revisiting an old question posted (in early 2014 mind) here:
What permissions are needed to programmatically mute a phone call, from a background app?
How to Mute Phone Call Stream (uplink) while calling on Android
How to mute audio speaker…

BykerHero
- 118
- 2
- 10