to top
Android APIs
public static class

CallLog.Calls

extends Object
implements BaseColumns
java.lang.Object
   ↳ android.provider.CallLog.Calls

Class Overview

Contains the recent calls.

Summary

Constants
String CACHED_NAME The cached name associated with the phone number, if it exists.
String CACHED_NUMBER_LABEL The cached number label, for a custom number type, associated with the phone number, if it exists.
String CACHED_NUMBER_TYPE The cached number type (Home, Work, etc) associated with the phone number, if it exists.
String CONTENT_ITEM_TYPE The MIME type of a CONTENT_URI sub-directory of a single call.
String CONTENT_TYPE The MIME type of CONTENT_URI and CONTENT_FILTER_URI providing a directory of calls.
String DATE The date the call occured, in milliseconds since the epoch

Type: INTEGER (long)

String DEFAULT_SORT_ORDER The default sort order for this table
String DURATION The duration of the call in seconds

Type: INTEGER (long)

int INCOMING_TYPE Call log type for incoming calls.
String IS_READ Whether this item has been read or otherwise consumed by the user.
String LIMIT_PARAM_KEY Query parameter used to limit the number of call logs returned.
int MISSED_TYPE Call log type for missed calls.
String NEW Whether or not the call has been acknowledged

Type: INTEGER (boolean)

String NUMBER The phone number as the user entered it.
String OFFSET_PARAM_KEY Query parameter used to specify the starting record to return.
int OUTGOING_TYPE Call log type for outgoing calls.
String TYPE The type of the call (incoming, outgoing or missed).
[Expand]
Inherited Constants
From interface android.provider.BaseColumns
Fields
public static final Uri CONTENT_FILTER_URI The content:// style URL for filtering this table on phone numbers
public static final Uri CONTENT_URI The content:// style URL for this table
Public Constructors
CallLog.Calls()
Public Methods
static String getLastOutgoingCall(Context context)
Query the call log database for the last dialed number.
[Expand]
Inherited Methods
From class java.lang.Object

Constants

public static final String CACHED_NAME

Added in API level 1

The cached name associated with the phone number, if it exists. This value is not guaranteed to be current, if the contact information associated with this number has changed.

Type: TEXT

Constant Value: "name"

public static final String CACHED_NUMBER_LABEL

Added in API level 1

The cached number label, for a custom number type, associated with the phone number, if it exists. This value is not guaranteed to be current, if the contact information associated with this number has changed.

Type: TEXT

Constant Value: "numberlabel"

public static final String CACHED_NUMBER_TYPE

Added in API level 1

The cached number type (Home, Work, etc) associated with the phone number, if it exists. This value is not guaranteed to be current, if the contact information associated with this number has changed.

Type: INTEGER

Constant Value: "numbertype"

public static final String CONTENT_ITEM_TYPE

Added in API level 1

The MIME type of a CONTENT_URI sub-directory of a single call.

Constant Value: "vnd.android.cursor.item/calls"

public static final String CONTENT_TYPE

Added in API level 1

The MIME type of CONTENT_URI and CONTENT_FILTER_URI providing a directory of calls.

Constant Value: "vnd.android.cursor.dir/calls"

public static final String DATE

Added in API level 1

The date the call occured, in milliseconds since the epoch

Type: INTEGER (long)

Constant Value: "date"

public static final String DEFAULT_SORT_ORDER

Added in API level 1

The default sort order for this table

Constant Value: "date DESC"

public static final String DURATION

Added in API level 1

The duration of the call in seconds

Type: INTEGER (long)

Constant Value: "duration"

public static final int INCOMING_TYPE

Added in API level 1

Call log type for incoming calls.

Constant Value: 1 (0x00000001)

public static final String IS_READ

Added in API level 14

Whether this item has been read or otherwise consumed by the user.

Unlike the NEW field, which requires the user to have acknowledged the existence of the entry, this implies the user has interacted with the entry.

Type: INTEGER (boolean)

Constant Value: "is_read"

public static final String LIMIT_PARAM_KEY

Added in API level 17

Query parameter used to limit the number of call logs returned.

TYPE: integer

Constant Value: "limit"

public static final int MISSED_TYPE

Added in API level 1

Call log type for missed calls.

Constant Value: 3 (0x00000003)

public static final String NEW

Added in API level 1

Whether or not the call has been acknowledged

Type: INTEGER (boolean)

Constant Value: "new"

public static final String NUMBER

Added in API level 1

The phone number as the user entered it.

Type: TEXT

Constant Value: "number"

public static final String OFFSET_PARAM_KEY

Added in API level 17

Query parameter used to specify the starting record to return.

TYPE: integer

Constant Value: "offset"

public static final int OUTGOING_TYPE

Added in API level 1

Call log type for outgoing calls.

Constant Value: 2 (0x00000002)

public static final String TYPE

Added in API level 1

The type of the call (incoming, outgoing or missed).

Type: INTEGER (int)

Constant Value: "type"

Fields

public static final Uri CONTENT_FILTER_URI

Added in API level 1

The content:// style URL for filtering this table on phone numbers

public static final Uri CONTENT_URI

Added in API level 1

The content:// style URL for this table

Public Constructors

public CallLog.Calls ()

Added in API level 1

Public Methods

public static String getLastOutgoingCall (Context context)

Added in API level 8

Query the call log database for the last dialed number.

Parameters
context Used to get the content resolver.
Returns
  • The last phone number dialed (outgoing) or an empty string if none exist yet.