Change style of android MediaController

android, android-widget

Solution

The method `makeControllerView` was meant to be overridden so you could supply your own view. Unfortunately, it is hidden at the moment.

You may want to take the source of MediaController and either reimplement it or copy-and-paste the hidden methods into a subclass so you can customize it.

Problem

Is there a way to customize the MediaController? I need to change the style of buttons, SeekBar etc.

Original source

Related problems