The phonecalls tag has no wiki summary.
0
votes
1answer
20 views
Is it possible to play music during calls so that the partner can hear it ? Android
Is it possible to play music during calls so that the partner can hear it ? if yes how can i implement this ?
0
votes
1answer
21 views
Traverse some methods to main “call handling” activity
I'm curious if there is a possibility to traverse some methods from my application to the main call handling app.
For example if the phone is called, to show a different activity with a "Response" ...
0
votes
1answer
25 views
how to detect if incomming miss calls are read
I am currently detecting missed calls using:
String[] projection = new String[]{CallLog.Calls.NUMBER,
CallLog.Calls.TYPE,
CallLog.Calls.DURATION,
...
1
vote
6answers
65 views
How can I call a number from button press in Android?
I'm very much a beginner at this and I'm struggling to get this to work.
When button is pressed, I simply want the dialer to open with the specified number automatically inputted.
So far I've tried ...
0
votes
1answer
29 views
Windows Phone App: Is there a way to have a button start dialing a phone number from my app?
I am creating an app, and I want to have a button that I can click that will dial a phone number. The phone number will already be chosen by me. Is this possible?
0
votes
2answers
27 views
Get call recieve event in android
Can I get incoming call pick up and end call event in android through coding? I want to that when I received incoming call then should be show toast message.Like incoming call i want to that when we ...
3
votes
1answer
22 views
Showing an interactive floating layout during calls
Background
There are some nice apps out there that show some layout on top , while the user is making a call or answering one (like "current caller id").
I need to create an app with the ability to ...
-1
votes
1answer
35 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 ...
1
vote
2answers
57 views
Call Android Activity
I have an application that performs a phone call, but when I send dial directly, the application is in the background and displays the screen of the android default phone call, it must not happen, ...
0
votes
2answers
47 views
android make a miscall from my application
i need to make a phone call from my application to some predefined phone number, and after some time interval, lets say 10 seconds after it starts ringing, i want to automatically terminate this call, ...
0
votes
1answer
51 views
Windows Phone 7 automatic call contact
I've been trying to make a program which will call a hard coded contact in WP7. Im using this code for the call function
PhoneCallTask phoneCallTask = new PhoneCallTask();
...
0
votes
1answer
69 views
iOS app layout changed after phone call
If I receive a phone call while using my app, the view is bumped down a bit to make room for the call status bar at the top.
Once the call is over, the view stays in this 'altered' state. How can I ...
0
votes
1answer
199 views
Answering machine with Android Appcelerator Titanium
Is it possible to create an answering machine with Titanium on Andorid?
If yes, is there a module that can detect incoming calls even if the app is closed?
0
votes
1answer
73 views
Make a call-buton
I am trying to add multiple buttons to my app so if you click one you automatically call a certain person, but now I'm stuck on the call-action, how can I make a call when there is being clicked on ...
0
votes
2answers
238 views
How to detect Incoming call in background
I am trying to create on application. I need to detect if i get any call then get number but this all process should happen in background.
Background working is latter part but now i am trying start ...
2
votes
0answers
253 views
iOS telprompt - can you get the status of the call?
The app I'm working on makes calls when the user tells it to, using telprompt to come back to the app when the call is over. Is there any way to tell what caused the call to end? If the call failed, ...
-1
votes
1answer
46 views
make a phone call from a MapView
i'm trying to make a phone call when i click on alertDialog button,this alertdialog attached to a mapview at every geopoint. I think i'm doing something wrong here
this is my logcat:
02-04 ...
1
vote
1answer
235 views
Remote Phone Call Applcation in Android?
I need to create one application based on rdp , to make calls in the Android remotely from the Computer. When you select a number in the computer and click on CALL, the Android phone should dial that ...
1
vote
0answers
132 views
Voice modulation in live phone call in iOS 6+
I want to do voice modulation in live phone call meaning while conversation is happening , I want to do voice modulation. I saw ios apps which do voice modulation after they record the voice. I also ...
0
votes
0answers
86 views
How can I have control to my calls from a phonegap application?
I have a PhoneGap application and I want to make calls, and manage it, on an Android device without minimizing it.
I think PhoneGap cedes control to the calling application, and we should develop this ...
0
votes
2answers
50 views
How to prevent the screen off during the call?
I am making my own LockScreen using Intent.ACTION_SCREEN_OFF and Intent.ACTION_SCREEN_ON. I want to stop my app when i have a phone call but i can't find the way to do this. the last choice is prevent ...
0
votes
0answers
59 views
Send key events while calling to the operator
Hi have my activity wich is launched when a phone call is done or received (replacing the system activity or at leats it is above it). What I want is to send key events to the operator such us 0 or 9 ...
1
vote
0answers
82 views
Disable own lockscreen when device on call
I am making my own LockScreen using Intent.ACTION_SCREEN_OFF and Intent.ACTION_SCREEN_ON. But when i have a call it still works. I referred this code but it did not work.
StateListener ...
0
votes
1answer
95 views
call management in android
I'm looking for a developers guide or good tutorials on phone call management In android.
What I want to do is to detect incoming phone call activate a custom activity in which I can answer, reject ...
0
votes
2answers
535 views
Record the conversation of phone - ios [duplicate]
Possible Duplicate:
Is an iPhone Call Recorder theoretically possible?
I am an iPhone devleoper.
I want to record the conversation during phone call.
I don't know apple is allowing to ...
0
votes
2answers
1k views
HTML Phone call with mobile device (href=“tel:”) and javascript
I'm trying to assign the function phone call to a select element.
When the select element is changed so does the simulation click on the link with href="tel:" tag to make the phone call.
I tested via ...
1
vote
1answer
49 views
Kindly help me with error com.maju.yourApp has stopped unexpectidly
I am making an application that provides the facility of a dialer. I have created a keypad and provided functionality of a keypad behind it. It should detect incoming call, dial a call using ...
1
vote
2answers
566 views
How to open number dialer pad programmatically in android?
I want to display Number Dial Keypad (Phone Call) Programmatically on button click in android. Code is available for direct number dialing but I only need to show the dial keypad when I click the ...
0
votes
0answers
130 views
Android Intent.ACTION_CALL on calling adds additional unwanted prefix
Got the issue on performing calls from android app.
I have this code to call 4 digits number.
Uri uri = Uri.fromParts("tel", url, null);
Intent callIntent = new Intent(Intent.ACTION_CALL, uri);
...
0
votes
1answer
147 views
Checking if call being made is international
I'd like to check if a call being made is international or not. I have the SIM number which I obtain by using TelephonyManager.getLine1Number() and also the Country code ISO of the SIM Card which I ...
-1
votes
1answer
288 views
android detect call state [closed]
I have an application that runs in background and sometimes show some notification(s) to the user. I want to cancel offering notifications if the user is in a conversation at that moment. How do I do ...
0
votes
0answers
118 views
Is there a way to stream audio chunks into a google voice phone call? [closed]
Ok, so is there any way to read/write chunks from/to a active google voice call. I use Python 2.5 with Windows XP. I want my program to act like it is the client side google voice plugin, so I can ...
0
votes
2answers
204 views
how to make a call, without using intent
How can I make a call without/with user interaction.
I found the intent Intent.ACTION_CALL on the internet, but I want to write program like the one which initiates a call in response of this intent, ...
0
votes
1answer
673 views
How to make asterisk server automatically response to SIP call?
My objective: I want to use softphone(3CX phone) register with asterisk server, and make call to the server and asterisk act
as a server to automatically response something, like play a song.
How i ...
0
votes
2answers
169 views
how to make a phone call?
i want to make a phone call in my apps when i press item "call shop",
here's my code:
@Override
protected void onListItemClick(ListView l, View v, int position, long id) {
// TODO ...
0
votes
1answer
142 views
android: How to open the call screen and fill it with a number but do not make a call?
I could only find "how to make a call from your application" and the solution is:
EditText et = (EditText) findViewById(R.id.editText);
String s = et.getText().toString();
try {
Intent ...
0
votes
1answer
2k views
Replacing phone.apk with a customized app
i need to know what are the steps in modifying the phone.apk app on android , which allows to call and receive calls (and what is shown upon talking on the phone) .
what do i need to do (of course i ...
1
vote
1answer
86 views
Sounds doesn't come out from the phone when I play them during the call through the coding?
I have tested my app: it starts playing a song by getting incoming call on external speaker with enough volume to make person on another side to listen what we play on our side.
But when I answer a ...
0
votes
0answers
104 views
How to display contact name while dialing the call in android programmatically
I cant display the contact name while dialing the call in android.
here is my code:
String callTo = "9999900000";
String callername="xxx";
Intent callIntent = new Intent(Intent.ACTION_CALL);
...
0
votes
0answers
104 views
Android Music player- Song is not paused in call
I am working on music player and stuck in an issue,
I have played a song in music player(android music player)
when i recieve an sms, ringtone is played
and the song volume gets lowered as per ...
1
vote
2answers
161 views
Google adwords conversion on phone call?
I want to track adwords conversions when a user clicks on a phone number on my page coming from a google search. That's what i did:
I added a piece of script based on detectmobilebrowser.js to check ...
0
votes
1answer
255 views
Phone number sanitizer for intent.ACTION_CALL
I have the following onClickListener():
phonereserveListener = new OnClickListener() {
@Override
public void onClick(View v) {
if (phone!=null){
String url = ...
1
vote
2answers
222 views
Android Intent.CALL not working
I looked at the example here and tried to replicate the answer. However,
Intent callIntent = new Intent(Intent.ACTION_CALL); does nothing while
Intent callIntent = new Intent(Intent.ACTION_DIAL); ...
0
votes
0answers
55 views
How to play audio file to caller In IOS
In my application,i am calling to a number,if the calling number lifts the phone. i need to play a audio file.Is there any posibility to play like that in ios.please help me in doing this.
0
votes
1answer
269 views
Send sms automatically for incoming calls and messages
I'm a UG student.....I'm creating an android application as my project work
My application is......setting an event in calender....my app retrieves start time and end time from calender and silences ...
0
votes
0answers
10 views
Trigger default action on the link to invoke phone-call by event [duplicate]
Possible Duplicate:
Is there a way to simulate key presses or a click with javascript?
I have a following link:
<a href="tel:12345">Call me</a>
Is it possible to trigger ...
3
votes
3answers
2k views
iOS How to check if currently on phone call
I have look around and all I can find is checking the callState of CTCallCenter. However, this works by listening to an event - which depending on whether the application is active/suspended/resumed ...
0
votes
1answer
311 views
Adobe Air Mobile (iOS, Android) and Incoming Phone Calls
I'm looking into handling Audio interruptions (incoming phone calls, calendar or clock events) in my Air application. The target OS are iOS and Android.
I already have a working implementation for ...
0
votes
3answers
518 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 ...
0
votes
2answers
2k views
Android open phone call application
I just want to open phone call application of android device. I dont want to provide that application a phone number. Just want to open it. I am using phone application's package name to open it. ...







