Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a VideoView that takes up the top half of the Activity in portrait orientation with the bottom half of the screen showing some images and text. I am playing a rtsp video stream in the video view when the Activity starts. I have attached a MediaController to the VideoView via the following code:

    MediaController controller = new MediaController(this);
    controller.setAnchorView(this.videoView);
    controller.setMediaPlayer(this.videoView);
    this.videoView.setMediaController(controller);

When I tap the VideoView to bring up the MediaController on the screen I expected the playback controls to appear overlaying the bottom area of the VideoView (the bottom of the MediaController even with the bottom of the VideoView). Instead the MediaController pops up lower down on the screen, overlaying some of the graphics and text I have below the VideoView.

Are there some additional steps I need to take to get the MediaController to appear where I want it to on the screen?

share|improve this question
3  
I am interested in this as well. Did you ever figure it out? – Ronnie May 17 '11 at 22:38
1  
No I never did. – mbaird May 18 '11 at 0:22
1  
Have a look at this question stackoverflow.com/questions/6093756/… – Sandeep Aug 2 '11 at 11:05
@mbaird if you still want this solved: show me your xml (: – Sherif elKhatib Aug 11 '11 at 1:58

3 Answers

up vote 1 down vote accepted

Frankly, I'd just write my own controller. In fact, I did once.

That being said, try setAnchorView() -- by my reading of the source code, the MediaController will appear at the bottom of whatever the anchor view is.

share|improve this answer
I am desperate to figure this out. I posted a question yesterday about extending the MediaController: stackoverflow.com/questions/7881272/… . I've looked at your github code but wasn't able to figure it out. I think I need to override the setAnchorView method so I can begin to place the MediaController wherever I like. Is their a way to make it "float" and position it that way? – Ronnie Oct 25 '11 at 16:56

I use this code to solve it.

mediaController.setPadding(0, 0, 0, px);

to set the mediacontroller view to the position you want. Hope this help you.

share|improve this answer
What is px....? – Peter Ajtai Mar 23 '12 at 20:51
1  
px is a int type variable which is the number of pixels from the bottom of the screen. – Rongan Apr 2 '12 at 7:35
Exactly what I was looking for. – nifo Jun 13 '12 at 9:23
Setting the padding will expand the MediaController view, so you'll not be able to get input events to anything beneath it. Better set the margin. – bk138 Sep 7 '12 at 11:20

Setting the anchor view will only work if the videoview size is known - it will not be upon init. But you can do something like this:

 video.setOnPreparedListener(new OnPreparedListener() {
        @Override
        public void onPrepared(MediaPlayer mp) {
                mp.setOnVideoSizeChangedListener(new OnVideoSizeChangedListener() { 
                                                @Override
                                                public void onVideoSizeChanged(MediaPlayer mp, int width, int height) {
                                                        /*
                                                         *  add media controller
                                                         */
                                                        mc = new MediaController(YourActivity.this);;
                                                        video.setMediaController(mc);
                                                        /*
                                                         * and set its position on screen
                                                         */
                                                        mc.setAnchorView(video);
                                                    }
                                                });
                                            }
                                        });
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.