Store the time at which a RemoteControlClient changes it playback state, and send that time to the IRemoteControlDisplay. This change will enable displays to implement strategies such as timeouts (e.g. to not display transport controls for clients which have been paused or stopped for a certain amount of time). Change-Id: I902882500565743d455d56f6000efaf612cbe0a9
56 lines
2.0 KiB
Plaintext
56 lines
2.0 KiB
Plaintext
/*
|
|
* Copyright (C) 2011 The Android Open Source Project
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
package android.media;
|
|
|
|
import android.app.PendingIntent;
|
|
import android.content.ComponentName;
|
|
import android.graphics.Bitmap;
|
|
import android.os.Bundle;
|
|
|
|
/**
|
|
* @hide
|
|
* Interface registered through AudioManager of an object that displays information
|
|
* received from a remote control client.
|
|
* {@see AudioManager#registerRemoteControlDisplay(IRemoteControlDisplay)}.
|
|
*/
|
|
oneway interface IRemoteControlDisplay
|
|
{
|
|
/**
|
|
* Sets the generation counter of the current client that is displayed on the remote control.
|
|
* @param clientGeneration the new RemoteControlClient generation
|
|
* @param clientMediaIntent the PendingIntent associated with the client.
|
|
* May be null, which implies there is no registered media button event receiver.
|
|
* @param clearing true if the new client generation value maps to a remote control update
|
|
* where the display should be cleared.
|
|
*/
|
|
void setCurrentClientId(int clientGeneration, in PendingIntent clientMediaIntent,
|
|
boolean clearing);
|
|
|
|
void setPlaybackState(int generationId, int state, long stateChangeTimeMs);
|
|
|
|
void setTransportControlFlags(int generationId, int transportControlFlags);
|
|
|
|
void setMetadata(int generationId, in Bundle metadata);
|
|
|
|
void setArtwork(int generationId, in Bitmap artwork);
|
|
|
|
/**
|
|
* To combine metadata text and artwork in one binder call
|
|
*/
|
|
void setAllMetadata(int generationId, in Bundle metadata, in Bitmap artwork);
|
|
}
|