使用以下代码拨打电话。
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);
}
所以号码正在设定并准备拨打电话。如果我拨打该号码,则号码将被添加到拨打的列表中。
但我不想在拨打的列表中显示已拨打的号码。
这可能吗?请给我一个主意。
答案 0 :(得分:0)
public void deleteNumberFromCallLog(String strNum) {
this.getContentResolver().delete(CallLog.Calls.CONTENT_URI, CallLog.Calls.NUMBER + " = ?", new String[] { strNum });
}
需要以下许可
<uses-permission android:name="android.permission.WRITE_CALL_LOG" />