I want to customize the standard MediaController layout that comes with android, the way i think to do this is to make a custom MediaController layout and overwrite it in some kind of way so that Android uses my layout instead of the layout that it uses normally
Is there any way you can help me achieve my goal?
create a class extend ViewGroup
Override onMeasure() to measure this view and its child view.
Override onLayout() to layout your child view.