Lines Matching refs:status

25  * Describes the playback status of a media item.
38 * While the item is playing, the playback status may also include progress information
43 * To monitor playback status, the application should supply a {@link PendingIntent} to use as the
44 * {@link MediaControlIntent#EXTRA_ITEM_STATUS_UPDATE_RECEIVER item status update receiver}
46 * the status update receiver will only be invoked for major status changes such as a
49 * The status update receiver will not be invoked for minor progress updates such as
52 * {@link MediaControlIntent#ACTION_GET_STATUS get status request} to poll for changes
168 * Integer extra: HTTP status code.
170 * Specifies the HTTP status code that was encountered when the content
174 * successfully; there is no need to report a 200 (OK) status code.
176 * The value is an integer HTTP status code, such as 401 (Unauthorized),
181 "android.media.status.extra.HTTP_STATUS_CODE";
196 "android.media.status.extra.HTTP_RESPONSE_HEADERS";
203 * Gets the timestamp associated with the status information in
206 * @return The status timestamp in the {@link SystemClock#elapsedRealtime()} time base.
246 * Gets a bundle of extras for this status object.
311 * Builder for {@link MediaItemStatus media item status objects}.
317 * Creates a media item status builder using the current time as the
329 * Creates a media item status builder whose initial contents are
330 * copied from an existing status.
332 public Builder(MediaItemStatus status) {
333 if (status == null) {
334 throw new IllegalArgumentException("status must not be null");
337 mBundle = new Bundle(status.mBundle);
341 * Sets the timestamp associated with the status information in
376 * Sets a bundle of extras for this status object.
386 * Builds the {@link MediaItemStatus media item status object}.