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?

link|improve this question

66% accept rate
4  
Unlike iphones, android phones can actually make and receive phone calls... – Marc B Jul 18 '11 at 19:45
Provided the battery isn't dead :-) – Brian Warshaw Jul 18 '11 at 19:47
isn't this already a feature.. set the ringtone for a specific caller id? – Randy Jul 18 '11 at 19:48
Phone p = new Phone(); p.ringPhone(); two lines of code sheesh – JonH Jul 18 '11 at 19:48
feedback

5 Answers

up vote 1 down vote accepted

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:

http://developer.android.com/guide/topics/network/sip.html

link|improve this answer
For example a sms intent is received and a sms equals a certain parameter in a app. if this certain app is installed then android phone vibrates or rings or uses a notification. to alert the user. almost like an alarm or something. – yoshi24 Jul 18 '11 at 19:55
feedback

My suggestion would be to get someone to call it.

link|improve this answer
1  
I totally understand the downvotes that are sure to come, but I couldn't resist. – Brian Warshaw Jul 18 '11 at 19:45
this was my first reaction upon reading the title... no downvote from me :) – Randy Jul 18 '11 at 19:47
2  
+1 - But you'd want to make it a comment not an answer. – JonH Jul 18 '11 at 19:47
Come on guys... You know what i mean.. Like how to set a notification for specific action. – yoshi24 Jul 18 '11 at 19:49
You're asking how to play a sound when a certain thing happens--sounds like you're trying to have an app that 1) listens for system events; and, 2) gives a notification (with sound) when certain events happen. It just confuses things (albeit with a good deal of humor) when you ask us how to make a phone ring :-) But no harm intended. – Brian Warshaw Jul 18 '11 at 19:51
show 2 more comments
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.

link|improve this answer
Given the similarity in user name, I just had to answer! – Yossi Jul 18 '11 at 19:48
Lol i know i thought you had my name for a second. – yoshi24 Jul 18 '11 at 19:59
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

private void call() {
    try {
        Intent callIntent = new Intent(Intent.ACTION_CALL);
        callIntent.setData(Uri.parse("tel:123456789"));
        startActivity(callIntent);
    } catch (ActivityNotFoundException e) {
        Log.e("helloandroid dialing example", "Call failed", e);
    }
}
link|improve this answer
What happens here when you call the same handset making the call... – Daniel DiPaolo Jul 18 '11 at 19:57
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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.