To make a call am using this below code.
public void onClick(View v) {
// TODO Auto-generated method stub
String number = "892843903";
Intent callIntent = new Intent(Intent.ACTION_DIAL);
callIntent.setData(Uri.parse("tel:"+number));
ctx.startActivity(callIntent);
deleteNumberFromCallLog(con.number);
}
So the number is setting and ready to make call. If i call the number then number will be added to the dialed list.
But I don't want to show the dialed number in my dialed list.
Is this possible? Please give me an idea.