在Livecode中在Android上播放视频时如何设置全屏?

时间:2014-06-19 07:46:43

标签: android livecode

我创建了玩android的播放器。

我的卡上的这段代码:

on opencard
   --start videomobile
   if the environment is "mobile"then
      mobileControlCreate "player","videoControl"
      mobileControlSet "videoControl","filename","assets/player/vdo.mp4"
      mobileControlSet "videoControl","preserveAspect",true
      mobileControlSet "videoControl","showController",true
      mobileControlSet "videoControl","visible",true
      mobileControlSet "videoControl","rect",the rect of player ID 1004
   end if
   --end videomobile
end opencard

当我在我的设备上测试时。视频有节目播放。但它不像iOS上的全屏。

我该怎么办?

1 个答案:

答案 0 :(得分:1)

不幸的是,全屏选项仅适用于带有LiveCode的iOS。您可以使用mobileControlSet命令手动调整播放器的矩形。