Implement media browser on Android
Unsolved
Mobile and Embedded
-
Hi,
I would like to implement advanced AVRCP features for my media player. Android supports this using MediaBrowserServiceCompat. I found some examples how to implement it. But all of them start with service extending the MediaBrowserServiceCompat class:
public class MusicService extends MediaBrowserServiceCompat { }
but I already extend the QtService class and in Java I can not extend two classes. Do you have any idea how to solve this? Thank you.