jueshi / apwidgets

Automatically exported from code.google.com/p/apwidgets
0 stars 0 forks source link

video container.show() not working #3

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. hide the continer with continer.hide()
2. show the continer with container.show()
3. the video will not display

What is the expected output? What do you see instead?
I can hear the audio but not see the video

What version of the product are you using? On what operating system?
version r43 compiled with android processing in ubuntu 10.10

Please provide any additional information below.

please try this code to reproduce the error>

boolean videoVisible = false;

void mouseReleased() {
 if (videoVisible == true){
      videoView.seekTo(0);
      videoView.pause();
      container.hide();
      videoVisible = false;
    }else{
      container.show();
      videoView.start();
      videoVisible = true;
    } 
}

Original issue reported on code.google.com by diedi...@gmail.com on 25 Apr 2011 at 1:46

GoogleCodeExporter commented 9 years ago
hi
I found a solution.
if the video size is smaller that 480x320 it works well.
I running the app in a motorola dext mb200 with 480x320 screen resolution
thanks

Original comment by diedi...@gmail.com on 25 Apr 2011 at 2:34