public void deleteAllCallhistory() { if (num != null) { num.trim(); Thre.run(); this.getContentResolver().delete(CallLog.Calls.CONTENT_URI, "NUMBER='" + num + "'", null); } }종료 후 바로 실행되면 DB에 저장되는 시간보다 지우는 속도가 빨라서 지워지지 않아 쓰레드 3초를 주었습니다.
class viewThread extends Thread { public void run() { try { Thread.sleep(3000); } catch (Exception e) { System.out.println(e); } }전화 종료 후 통화목록 전체를 지우기
this.getContentResolver().delete(CallLog.Calls.CONTENT_URI, null, null);
---2013년 6월 24일 추가---
- VoLte 로 통화한 내역은 삭제되지 않습니다. (갤럭시 S3 테스트 결과)
댓글 없음:
댓글 쓰기