I'm looking for a simple and stable way to change the images of the MediaController
control. My research is so far that I looked at the source codes of the MediaController and its layout file and also a copy of com.android.internal.R for figgering out the correct ids. But I'm not sure if this is a good way to use the fixed ids form that page. I'm not sure if the I should use the ids, because they may change thrue the differnt SDK versions. The ids can change isn't it?
So far I thought to use another solution where I walk down the elements of the MediaController like explained in this answer. This may work but could make trouble if the control is changed in future releases or is this save to use?
My newest idea is to uses Themes, but I'm not sure if it is simple to replace the style because the controls uses style="@android:style/MediaButton.Xxx"
which is another namespace/package. So is theming an option to change the layout?