TaskLists

The task list table holds one entry for each task list.

Author

Marten Gajda

Constructors

Link copied to clipboard
constructor()

Properties

Link copied to clipboard
val _DIRTY: String = "_dirty"
Indicates that a task or a task list has been changed.
Link copied to clipboard
val _ID: String = "_id"
List ID.
Link copied to clipboard
val _SYNC_ID: String = "_sync_id"
A unique Sync ID as set by the sync adapter.
Link copied to clipboard
val ACCESS_LEVEL: String = "list_access_level"
The access level a user has on this list (taken from android.provider.CalendarContract).
Link copied to clipboard
Full access to the tasks list
Link copied to clipboard
Can read all tasks and details, no write access
Link copied to clipboard
Not specified by client, should be treated as read-write
Link copied to clipboard
val ACCOUNT_NAME: String = "account_name"
The name of the account this list belongs to.
Link copied to clipboard
val ACCOUNT_TYPE: String = "account_type"
The type of the account this list belongs to.
Link copied to clipboard
val CONTENT_URI_PATH: String = "tasklists"
Link copied to clipboard
val DEFAULT_SORT_ORDER: String = "account_name, list_name"
The default sort order.
Link copied to clipboard
val LIST_COLOR: String = "list_color"
The color of this list as integer (0xaarrggbb).
Link copied to clipboard
val LIST_NAME: String = "list_name"
The name of the task list.
Link copied to clipboard
val OWNER: String = "list_owner"
The email address of the list owner.
Link copied to clipboard
val SYNC1: String = "sync1"
A general purpose column for the sync adapter.
Link copied to clipboard
val SYNC2: String = "sync2"
A general purpose column for the sync adapter.
Link copied to clipboard
val SYNC3: String = "sync3"
A general purpose column for the sync adapter.
Link copied to clipboard
val SYNC4: String = "sync4"
A general purpose column for the sync adapter.
Link copied to clipboard
val SYNC5: String = "sync5"
A general purpose column for the sync adapter.
Link copied to clipboard
val SYNC6: String = "sync6"
A general purpose column for the sync adapter.
Link copied to clipboard
val SYNC7: String = "sync7"
A general purpose column for the sync adapter.
Link copied to clipboard
val SYNC8: String = "sync8"
A general purpose column for the sync adapter.
Link copied to clipboard
An array of columns only a sync adapter is allowed to change.
Link copied to clipboard
val SYNC_ENABLED: String = "sync_enabled"
Indicates that a task list is set to be synced.
Link copied to clipboard
val SYNC_VERSION: String = "sync_version"
Sync version as set by the sync adapter.
Link copied to clipboard
val VISIBLE: String = "visible"
Indicates that a task list is set to be visible.

Functions

Link copied to clipboard
open fun getContentUri(authority: String): Uri
Get the task list content Uri using the given authority.