| java.lang.Object | |
| ↳ | android.provider.Browser.BookmarkColumns | 
Column definitions for the mixed bookmark and history items available at BOOKMARKS_URI. 
| Constants | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| String | BOOKMARK | Flag indicating that an item is a bookmark. | |||||||||
| String | CREATED | The date the item created, in milliseconds since the epoch. | |||||||||
| String | DATE | The date the item was last visited, in milliseconds since the epoch. | |||||||||
| String | FAVICON | The favicon of the bookmark. | |||||||||
| String | TITLE | The user visible title of the bookmark or history item. | |||||||||
| String | URL | The URL of the bookmark or history item. | |||||||||
| String | VISITS | The number of time the item has been visited. | |||||||||
| [Expand] 
           Inherited Constants
           | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
|  From interface android.provider.BaseColumns | |||||||||||
| Public Constructors | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
|  |  | ||||||||||
| [Expand] 
           Inherited Methods
           | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
|  From class java.lang.Object | |||||||||||
Flag indicating that an item is a bookmark. A value of 1 indicates a bookmark, a value of 0 indicates a history item.
Type: INTEGER (boolean)
The date the item created, in milliseconds since the epoch.
Type: NUMBER (date in milliseconds since January 1, 1970)
The date the item was last visited, in milliseconds since the epoch.
Type: NUMBER (date in milliseconds since January 1, 1970)
The favicon of the bookmark. Must decode via decodeByteArray(byte[], int, int). 
Type: BLOB (image)
The user visible title of the bookmark or history item.
Type: TEXT
The URL of the bookmark or history item.
Type: TEXT (URL)
The number of time the item has been visited.
Type: NUMBER