I would like to update the CallLog.Calls.TYPE field of the first entry in the Android Call Log from MISSED to INCOMING. I have read b
CallLog.Calls.TYPE
MISSED
INCOMING
ContentValues cv = new ContentValues(); cv.put(CallLog.Calls.NUMBER,"7070770"); // contact number cv.put(CallLog.Calls.TYPE,1); // type cv.put(CallLog.Calls.DURATION, 120); // duration in second getContentResolver().insert(CallLog.CONTENT_URI, cv);