[android-developers] Re: Keeping MediaController from timing out after a certain amount of time

2009-10-07 Thread Danny
Thanks for the insight, even calling MediaController.show() after the MediaController is attached to the VideoView yielded to the same result. Is there a way to override how the VideoView will hide/show the MediaController? On Oct 6, 4:23 pm, Marco Nelissen marc...@android.com wrote: VideoView

[android-developers] Re: Keeping MediaController from timing out after a certain amount of time

2009-10-07 Thread Marco Nelissen
You could create a derived version of MediaController whose hide() does nothing. On Wed, Oct 7, 2009 at 10:27 AM, Danny datts...@gmail.com wrote: Thanks for the insight, even calling MediaController.show() after the MediaController is attached to the VideoView yielded to the same result. Is

[android-developers] Re: Keeping MediaController from timing out after a certain amount of time

2009-10-06 Thread Marco Nelissen
VideoView itself will hide/show the MediaController as it sees fit, so your call to show() will only be in effect until VideoView decides to hide (or show with a timeout) it again. Also, you are calling MediaController.show() before the MediaController is even attached to the VideoView. On Tue,

[android-developers] Re: Keeping MediaController from timing out after a certain amount of time

2009-10-06 Thread Atif Gulzar
you may also use .show(timeout) function. -- Best Regards, Atif Gulzar I Unicode, ɹɐzlnƃ ɟıʇɐ On Wed, Oct 7, 2009 at 5:23 AM, Marco Nelissen marc...@android.com wrote: VideoView itself will hide/show the MediaController as it sees fit, so your call to show() will only be in effect