Please note that the contents of this offline web site may be out of date. To access the most recent documentation visit the online version .
Note that links that point to online resources are green in color and will open in a new window.
We would love it if you could give us feedback about this material by filling this form (You have to be online to fill it)
Android APIs
public static interface

RemoteControlClient.OnMetadataUpdateListener

android.media.RemoteControlClient.OnMetadataUpdateListener

Class Overview

Interface definition for a callback to be invoked when one of the metadata values has been updated. Implement this interface to receive metadata updates after registering your listener through setMetadataUpdateListener(OnMetadataUpdateListener) .

Summary

Public Methods
abstract void onMetadataUpdate (int key, Object newValue)
Called on the implementer to notify that the metadata field for the given key has been updated to the new value.

Public Methods

public abstract void onMetadataUpdate (int key, Object newValue)

Called on the implementer to notify that the metadata field for the given key has been updated to the new value.

Parameters
key the identifier of the updated metadata field.
newValue the Object storing the new value for the key.