-1
votes
1answer
39 views

Android make phone call and handle result [closed]

I need some ideas of u guys. I want to call a list of phone numbers ( that isnt a problem ) and i want to handle the result of the call. There are two different typs of results. First: The called ...
0
votes
1answer
45 views

How to trace the phone call in iOS?

I want to know how to trace the call information in iOS code. I just wanted it to create a application which will record the phone calls. Please help.
0
votes
2answers
88 views

Widget buttons not working after phone call

I am working on a android home widget. When i start a call intent with a button click (that is in an activity that i started with a click on a widget's button), after the call ends, the widget's ...
0
votes
0answers
61 views

Xcode - Make phone calls through Wi-Fi

I have came across an interesting app on the app store that lets me make phone calls using Wi-Fi. Does anyone have any ideas or guidelines to what I can use to make an app like this? Any help would ...
0
votes
1answer
48 views

expandable list and dialer

I have an expandable list with a header and a number. I want to complete the action using a dialer whenever the number in the list is clicked. Im stuck with the getChildView method, I need to extract ...
0
votes
0answers
29 views

Why is calling screen always on top?

First of all, sorry if I asked this question in the wrong forum since I tried but could not find the forum to post mobile phone related queries. Here's my question. I was wondering that why would the ...
0
votes
0answers
33 views

can we trigger an event on cell phone calls using mobile websites?

Can we trigger an event on cell phone calls using mobile websites created using java and spring MVC? Basically we need to trigger some events when cell phone receives a call. Is it possible or do we ...
0
votes
0answers
66 views

How to make a phone call in Android 4 browser

I have used the following code to create a link in my web page to allow the user to call us directly. <a href="tel:12345678">Click me</a> It works for iphone and Android version 2.3. ...
0
votes
1answer
220 views

How to make a call from linux with android phone? [closed]

I need to make a phone call and\or send SMS from my debian server.android phone is plugged to the server by USB cable. I can connect to the phone from the server via: USB, Bluetooth or WIFI(ssh). ...
0
votes
2answers
56 views

ios - execute a call from my contacts

I was wondering if it's possible to execute a call from my contacts through my app? What I'm trying to do is execute a phone call which contains a '#'. I know Apple does not allow this by saying ...
0
votes
1answer
269 views

iOS - private API - accept incoming phone call

Is it possible to accept/answer an incoming phone call programmatically via a private API? I tried out the code to block an incoming call referenced at How can I use private APIs to block incoming ...
0
votes
2answers
44 views

Calling by Clicking the Number — Android

I am trying to have it so that when the phone number is clicked, it makes a call. The phone number is displaying correctly, but nothing happens when I click it. Why is this not working? ...
0
votes
1answer
33 views

Programmatically calling phones and parsing response

For one of my component of application I have to programmatically make call on phones and parse the response. I just wanted to check if there are any pre written libraries for this (don't want to ...
0
votes
0answers
37 views

Parcel.class source missing causing phone call to not work

pretty new to this so bear with me. Trying to make a phone call from an image button click and am hung on source not found error parcel.class. Following is the code...I know the email works...just ...
1
vote
1answer
490 views

Incoming Call Blocking in Android

I am able to block incoming calls in android but problems it rings for fraction of seconds before disconnection of time. How can i directly disconnect phone without single ringing? I have added ...
0
votes
2answers
232 views

Make phone call android and get number from edittext box

How i make a phone call when i get number from edittext?I try this but no work...i have problem with pass variable number to Uri.parse() must be inside void the gettext? public String string; public ...
1
vote
0answers
152 views

How to divert phone calls in android to another phone number

i want to write an application which be able to divert calls to another number, I know it can be done on phones by it self, but I want to only direct specific number to another number. is there any ...
1
vote
1answer
209 views

Fake Call and message

Can anyone help me how to create a fake call. as same mobile I want to create a fake name or number and fix timing : Example 5sec.(here i am using the toggle button enable disable fake call)
1
vote
1answer
387 views

Windows Phone - developing a caller ID app

I'm not a Windows Phone developer myself, so I apologize in advance for my lack of knowledge. One of the products we offer our customers is a caller ID app. The software does the following: Detect ...
1
vote
2answers
220 views

Android Phone call stream

Is it possible in Android to manipulate phone call data live before they are sent? (for, eg. by creating a buffer where the voice is recorded then sent after) or is it inaccessible, and must always be ...
0
votes
1answer
296 views

Why an incoming call number is null in intent extra TelephonyManager.EXTRA_INCOMING_NUMBER?

I have a broadcast receiver defined with intent filter "android.intent.action.PHONE_STATE". It mainly works just fine getting phone number from the intent, but sometimes, rather randomly, it fails on ...
0
votes
1answer
296 views

Use default incoming call screen fro making fake call - android

Is there a way to use default incoming call screen with its functionality (answer and reject) from inside my application. I want to make fake call from inside my application and i don't want to create ...
0
votes
0answers
121 views

How to programatically customize cellphone call image in Android?

When you calls (phone dial) a contact that you haven't in your contact list yet, you get an Android Face as "default" image for that assigned number in the dialling view. And here comes my issue: I'm ...
0
votes
0answers
96 views

Is it possible recording inbound phone call voice?

I want to record inbound phone call voice at iPhone by develop. but recording was interrupted at inbound phone call. How can solve this problem??
2
votes
1answer
559 views

Android: Make phone call from service

I try to make a phone call from inside a service. The code I use is: Intent intent = new Intent(Intent.ACTION_CALL); intent.setData(Uri.parse("tel:" + number)); startActivity(intent); and it works ...
1
vote
0answers
63 views

How to disable the call (is it possible) from custom contact screen in iphone?

Currently I am working on a simple iphone app, using ABPeopleNavigationViewController to create a Custom contact screen for the user to pick the phone number to send a message. But my problem, when ...
8
votes
6answers
216 views

Android How to make a call that includes “#” or “p” in the dial?

I need to make calls in my Android app that includes "#" or "p" in the dial. If I use the next code: Intent intent = new Intent(Intent.ACTION_CALL, Uri.parse("tel:629941945#22412")); ...
0
votes
3answers
305 views

alertView inside alertView -xcode

basically is what the title says.. i just cant figure out what i'am doing wrong.. a button from the first alert executes the second alert which is basically a confirmation to call someone. i dont get ...
0
votes
1answer
290 views

Android: make a call and disconnect after ringing to leave a missed call

i am using this code to make call Intent callIntent = new Intent(Intent.ACTION_CALL, Uri.parse("tel:" + phoneNumber)); startActivity(callIntent); and i want to ...
0
votes
0answers
247 views

Error in call log code?

I want to be able to access the call log in Android after clicking a button and I get errors which I cannot resolve. I posted my java code, manifest and error below. My Java file: import ...
0
votes
0answers
2k views

Play music during a call

Is it possible during a call, to play a song on my android phone and just the person I'm talking to hears the music?
3
votes
1answer
922 views

Android get Missed call

So I want to get the count of the missed calls like the telephonyapplication displays in the notification bar so I came up with this code : String[] projection = { CallLog.Calls.CACHED_NAME, ...
0
votes
3answers
1k views

How to get outgoing call connected state

In my application development, I need to do vibration when outgoing call connected, but I can not get the call answered state. I have read some topic about this question, such as: Outgoing call ...
0
votes
3answers
519 views

iOS: How to hide phone number when calling

My app allows the user to make a phone call but I need to hide the number I'm calling to because it has a secret code within it. Is there any way to achieve this? When I say "hide the number", I mean ...
2
votes
2answers
433 views

Programmatically making an emergency call on iPhone

I'd like to make a button with which the user can dial through to emergency services. There doesn't seem to be any specific method to call to do this, so I think I have to use [[UIApplication ...
1
vote
0answers
376 views

How to Mute Phone Call Stream (uplink) while calling on Android

I've never asked questions - always could find the stuff, but this time I really don't know, even where to dig. I trying to mute incoming uplink stream (while calling to smb) and play sound at this ...
0
votes
1answer
57 views

Formula Phone Call Calculation

I'm using the following statement to determine the correct prefix: select * from [lcsCDR].[dbo].[Phones] c inner join [CallAnalysisDatabase].[dbo].[CallRates$] r on r.Prefix COLLATE ...
0
votes
1answer
202 views

Phone call api using java

Is it possible to make a Phone call program using java? If it is possible, what class or packages do i need to create and do I need any other servers?
1
vote
1answer
267 views

Terminate phone call in Xcode

Is there a way to terminate a phone call from Xcode? The phone call will not be started by my app but needs to be ended by it.
2
votes
1answer
384 views

making a list of outgoing calls one by one automatically

i want to make calls to list of phone numbers(4/5 numbers) from my phone;i made on call, after ending that call then only it has to call next number (which is automatically). what my thought is: ...
0
votes
2answers
982 views

Ending the Out going call

OutGoingCallEnding This is my link source code ,I want to ending the out going call ending particular time.after some limit time another out going call going.plz try any one
1
vote
2answers
2k views

How do I reject/answer call in Android 2.3.3?

I am trying to reject/answer a call in android 2.3.3. I tried using ITelephony-endcall() and answerRingingCall() with no success. Any ideas?
0
votes
2answers
136 views

Calling a number on the iPhone

So, [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"tel: 14165551212"]]; calls a phone number on the iPhone. What other things can we do, though? I'm trying to ...
1
vote
1answer
213 views

Phone arguments on Blackberry OS 4.5

When I invoke code like this on blackberry using (compiling) JDE 4.5. public void invokeCall() { UiApplication.getUiApplication().invokeAndWait(new Runnable() { public void run() ...
2
votes
0answers
265 views

PhongGap Android Phone Call comes in event

I am making an android app using phonegap version 1.4.1 I have some flash content(Video with sound) in my application. My problem is, the video keeps playing even when the phone call comes in. So ...
1
vote
1answer
611 views

Android - Autolink phone numbers

I am using autolink="phone", but however, I have tried to link it with 3 digits (for e.g. 911, for emergency calls), but it doesn't work. Is there a minimum amount of digit before it can link to the ...
0
votes
1answer
703 views

Call handling on Android

I came across this problem several times in google group Android, here on SO and other communication platform. I'm aiming for the functionalities of the internal interface ...
-1
votes
1answer
309 views

Create a phone call chat room? [closed]

I have a lot of friends who love to talk to each other on the phone all the time. We are on the go a lot and love to stay connected. I was wondering if I could create a group chat room where my ...
0
votes
0answers
59 views

get message after phone calls

After making a phone call, i receive a message about the balance remaining, talk time and the amount deducted in all prepaid phones (i live in india. I get this message, after a phone call is made. I ...
1
vote
2answers
299 views

I'm trying to make a simple app that gives you the option to make a phone call

My droid app has a button on the main page that gives you an dialogue popup page and asks within the dialogue page whether you want to make a phone call or not Ive tried and over and over and haven't ...

1 2