0

i want to make an android app that when device receive a call,my app could reject,answer or minimize call mode and do somethings else in device menu while device is ringing.

for this,i should get handle of default answer app of android.

i know that we can access activities from another applications,like maps

String uri = "geo:"+ latitude + "," + longitude;
startActivity(new Intent(android.content.Intent.ACTION_VIEW, Uri.parse(uri)));

how could i do this?

1
  • What all have you tried so far?
    – Aditya
    Commented Aug 26, 2013 at 21:34

1 Answer 1

0

Create a broadcast on receiving a call and then create IDL interface for getting core Telephony service. Please refer to this and this tutorials.

1
  • i try this and report soon,thanx Commented Aug 28, 2013 at 7:58

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

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