Hello,
Can some one tell me how can i retrieve the number of outgoing call ?
I am able to get notification in BroadcastReceiver but not able to get
the number on which it is making call. Can some one tell me how can i
get the number ? I wrote the following code but it is throwing
exception.
Bundle bundle=intent.getExtras();
if(bundle!=null)
{
Object object=bundle.get("EXTRA_PHONE_NUMBER");
//String sobj=object.toString();
String sobj=(String)object;
Log.e("Sobjec", sobj);
}
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---