Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want create MediaPlayer with custom design, but how to do it I can't find. I make streaming media player:

...
mVideoView = (VideoView) findViewById(R.id.vedio_view);
mBtnHttp = (Button) findViewById(R.id.btn_http);
mBtnHttp.setOnClickListener(this);
mMediaController = new MediaController(this);
...
public void onClick(View v) {
    mVideoView.setVideoURI(Uri.parse(uri));
    mVideoView.start();
    mVideoView.requestFocus();
    mMediaController.show();
    }
...

Please, help me. I found a lot of topics in stackoverflow, but the problem was not solved! Thanks in advance!

share|improve this question
Ok, you want your own controls in media player or what ? – David Arfin Jul 2 '12 at 8:21
Yes, exactly. Do you know, how do this? – sherman Jul 2 '12 at 8:55
Here is an example MediaController customization: stackoverflow.com/questions/12482203/… – Blago Jan 14 at 17:13

1 Answer

up vote 2 down vote accepted

Hi refer this link for custom design

http://innovator.samsungmobile.com/cms/cnts/knowledge.detail.view.do?platformId=1&cntsId=9540

Below link is for customize audioplayer

http://www.androidhive.info/2012/03/android-building-audio-player-tutorial/

share|improve this answer
Perfectly! Thank you very much! – sherman Jul 4 '12 at 11:53
3  
The first link is broken. – rekire Dec 28 '12 at 6:36

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.