I would like to make a android phone ring through code. For example a app installed and the use recieves a call a app listens for this. If a certain number calls then a specific ringtone plays. How do i go about make code to make a android phone ring?
|
feedback
|
|
Well first of all i thought it was a good question but apparently people dont understand what you are asking. I think that you want to like call the phone you are calling from or somthing like that, i dont know it is possible but heres the tutorial on phone calls, from the official android website: | |||
feedback
|
|
My suggestion would be to get someone to call it. | |||||||||||||||
feedback
|
|
A ring is simply a sound file played through the speaker. Read up on how to configure your mediaplayer object to play your required sound through the external speaker. | |||||
|
feedback
|
|
Try implementing this call method I found. You should be able to tweak it to your liking if not it will be a good start. The full info was Here
| |||
feedback
|
|
This is part of the functionality of android anyway! I am positive that this is not possible to do with an android app without modifying the os. Apps cannot initiate incoming calls for security reasons. | |||
|
feedback
|
Phone p = new Phone(); p.ringPhone();two lines of code sheesh – JonH Jul 18 '11 at 19:48