Home | History | Annotate | Download | only in provider

Lines Matching defs:StreamItems

1692          * {@link ContactsContract.StreamItems} rows.  This directory can be used either
1700 public static final class StreamItems implements StreamItemsColumns {
1704 private StreamItems() {}
2799 * {@link ContactsContract.StreamItems} rows. To access this directory append
2800 * {@link RawContacts.StreamItems#CONTENT_DIRECTORY} to the raw contact URI. See
2801 * {@link ContactsContract.StreamItems} for a stand-alone table containing the
2812 public static final class StreamItems implements BaseColumns, StreamItemsColumns {
2816 private StreamItems() {
3100 * Users of this API can query {@link ContactsContract.StreamItems#CONTENT_LIMIT_URI} to
3103 * automatically lead to deletion of the oldest items, by {@link StreamItems#TIMESTAMP}.
3125 * <dt>Via the {@link RawContacts.StreamItems#CONTENT_DIRECTORY} sub-path of a raw contact:</dt>
3129 * values.put(StreamItems.TEXT, "Breakfasted at Tiffanys");
3130 * values.put(StreamItems.TIMESTAMP, timestamp);
3131 * values.put(StreamItems.COMMENTS, "3 people reshared this");
3134 * builder.appendEncodedPath(RawContacts.StreamItems.CONTENT_DIRECTORY);
3141 * <dt>Via {@link StreamItems#CONTENT_URI}:</dt>
3145 * values.put(StreamItems.RAW_CONTACT_ID, rawContactId);
3146 * values.put(StreamItems.TEXT, "Breakfasted at Tiffanys");
3147 * values.put(StreamItems.TIMESTAMP, timestamp);
3148 * values.put(StreamItems.COMMENTS, "3 people reshared this");
3149 * Uri.Builder builder = StreamItems.CONTENT_URI.buildUpon();
3160 * Once a {@link StreamItems} entry has been inserted, photos associated with that
3171 * ContentUris.withAppendedId(StreamItems.CONTENT_URI, streamItemId),
3172 * StreamItems.StreamItemPhotos.CONTENT_DIRECTORY), values);
3175 StreamItems#CONTENT_PHOTO_URI}:</dt>
3182 * getContentResolver().insert(StreamItems.CONTENT_PHOTO_URI, values);
3193 * {@link StreamItems#CONTENT_URI} URI. Only social stream entries that were
3197 * {@link StreamItems#CONTENT_URI} URI. Only social stream entries that were
3206 * Contacts.StreamItems.CONTENT_DIRECTORY),
3214 * .appendPath(Contacts.StreamItems.CONTENT_DIRECTORY).build(),
3223 * RawContacts.StreamItems.CONTENT_DIRECTORY)),
3231 * StreamItems.CONTENT_URI, streamItemId),
3237 public static final class StreamItems implements BaseColumns, StreamItemsColumns {
3241 private StreamItems() {
3255 * {@link StreamItems.StreamItemPhotos#CONTENT_DIRECTORY} path to URIs for a
3283 * Queries to {@link ContactsContract.StreamItems#CONTENT_LIMIT_URI} will
3293 * directory append {@link StreamItems.StreamItemPhotos#CONTENT_DIRECTORY} to
3330 * Columns in the StreamItems table.
3332 * @see ContactsContract.StreamItems
3500 * Via the {@link StreamItems.StreamItemPhotos#CONTENT_DIRECTORY} sub-path of a
3508 * Uri.Builder builder = StreamItems.CONTENT_URI.buildUpon();
3510 * builder.appendEncodedPath(StreamItems.StreamItemPhotos.CONTENT_DIRECTORY);
3517 * <dt>Via the {@link ContactsContract.StreamItems#CONTENT_PHOTO_URI} URI:</dt>
3524 * Uri.Builder builder = StreamItems.CONTENT_PHOTO_URI.buildUpon();
3540 * <dt>Via the {@link StreamItems.StreamItemPhotos#CONTENT_DIRECTORY} sub-path of a
3547 * Uri.Builder builder = StreamItems.CONTENT_URI.buildUpon();
3549 * builder.appendEncodedPath(StreamItems.StreamItemPhotos.CONTENT_DIRECTORY);
3556 * <dt>Via the {@link ContactsContract.StreamItems#CONTENT_PHOTO_URI} URI:</dt>
3562 * Uri.Builder builder = StreamItems.CONTENT_PHOTO_URI.buildUpon();
3577 * {@link StreamItems
3581 * Uri.Builder builder = StreamItems.CONTENT_URI.buildUpon();
3583 * builder.appendEncodedPath(StreamItems.StreamItemPhotos.CONTENT_DIRECTORY);
3593 * Uri.Builder builder = StreamItems.CONTENT_URI.buildUpon();
3595 * builder.appendEncodedPath(StreamItems.StreamItemPhotos.CONTENT_DIRECTORY);
3611 * ContentUris.withAppendedId(StreamItems.CONTENT_URI, streamItemId)
3612 * StreamItems.StreamItemPhotos#CONTENT_DIRECTORY),
3621 * ContentUris.withAppendedId(StreamItems.CONTENT_URI, streamItemId)
3622 * StreamItems.StreamItemPhotos#CONTENT_DIRECTORY),
3673 * A reference to the {@link StreamItems#_ID} this photo is associated with.