I have the following code:

songView = (VideoView)this.findViewById(R.id.VideoView02);
MediaController mc = new MediaController(this);
mc.show(0);
mc.requestFocus();
songView.setMediaController(mc);
songView.requestFocus();


http://developer.android.com/reference/android/widget/MediaController.html#show%28int%29

According to the doc , it says
public void  show  (int timeout)
The timeout in milliseconds. Use 0 to show the controller until hide()
is called.

I can not get the mediacontroller to show permanently or any other
time. Anyone successfully get this to work? Thanks in advance!
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to