Home | History | Annotate | Download | only in calllog

Lines Matching refs:Calls

29 import android.provider.CallLog.Calls;
152 // TODO: Use the photo of contact if all calls are from the same person.
182 contentIntent = new Intent(Intent.ACTION_VIEW, Calls.CONTENT_URI);
221 /** Allows determining the new calls for which a notification should be generated. */
224 * Returns the new calls for which a notification should be generated.
235 * Default implementation of {@link NewCallsQuery} that looks up the list of new calls to
240 Calls._ID, Calls.NUMBER, Calls.VOICEMAIL_URI
254 final String selection = String.format("%s = 1 AND %s = ?", Calls.NEW, Calls.TYPE);
255 final String[] selectionArgs = new String[]{ Integer.toString(Calls.VOICEMAIL_TYPE) };
258 cursor = mContentResolver.query(Calls.CONTENT_URI_WITH_VOICEMAIL, PROJECTION,
259 selection, selectionArgs, Calls.DEFAULT_SORT_ORDER);
277 Calls.CONTENT_URI_WITH_VOICEMAIL, cursor.getLong(ID_COLUMN_INDEX));