天天看點

bada開發--播放視訊時如何橫向全屏

我的思路是一開始将frame設定為全屏大小的,開始播放時再更改為需要的大小,當需要全屏時再設定回去,呵呵

初始化時

__pPanel->Construct(Rectangle(0,0,480,800));

視訊播放的時候

__pPanel->SetBounds(0,200,480,360);

__pPanel->Draw();

__pPanel->Show();

點選全屏的時候

__pPanel->SetBounds(0,0,480,800);

__pPanel->Draw();

__pPanel->Show();

RequestRedraw();

__pPanel->SetRendererRotation(OverlayPanel::ROTATION_90);

http://blog.csdn.net/xueyuxtmoon

轉載請注明出處,非常感謝!