I have a Video-Activity with a MediaCrontroller like this
ctlr = new MediaController(this);
ctlr.setMediaPlayer(mVV);
mVV.setMediaController(ctlr);
ctlr.show();
how can i add a back Button to the MediaController? (The system navigation bar is not available since it runs on a dedicated device)
Where VideoPlayer is your activity