HarmonyOS video组件 设置自定义控制器时,全屏不显示控制器

video 组件需要自定义控制器 全屏时 保持横屏。

HarmonyOS
2024-09-24 12:37:30
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
Heiang

video自带的全屏不能自定义设置控件

可以给视频展示区一个高度,通过调整尺寸实现全屏的效果,同时也可以显示自定义的播放控件

参考以下demo:

// xxx.ets  
import { window } from '@kit.ArkUI'  
  
@Entry  
@Component  
struct VideoCreateComponent {  
  @State videoSrc: Resource = $rawfile('demo.mp4')  
  @State previewUri: Resource = $r('app.media.startIcon')  
  @State curRate: PlaybackSpeed = PlaybackSpeed.Speed_Forward_1_00_X  
  @State isAutoPlay: boolean = false  
  @State showControls: boolean = true  
  @State videoHeight: string = '600vp'  
  controller: VideoController = new VideoController()  
  @State windowClass:window.Window|undefined = undefined  
  aboutToAppear(): void {  
    window.getLastWindow(getContext(this)).then((window)=>{  
      this.windowClass = window  
    })  
  }  
  
  build() {  
    Stack() {  
      Video({  
        src: this.videoSrc,  
        previewUri: this.previewUri,  
        currentProgressRate: this.curRate,  
        controller: this.controller  
      })  
        .width('100%')  
        .height(this.videoHeight)  
        .autoPlay(this.isAutoPlay)  
        .controls(this.showControls)  
  
      Row() {  
        Button('controls').onClick(() => {  
          this.showControls = !this.showControls // 切换是否显示视频控制栏  
        }).margin(5)  
        Button('start').onClick(() => {  
          this.controller.start() // 开始播放  
        }).margin(5)  
        Button('pause').onClick(() => {  
          this.controller.pause() // 暂停播放  
        }).margin(5)  
        Button('fullscreen').onClick(async () => {  
          if(!this.windowClass){  
            return;  
          }  
          if(this.videoHeight === '100%'){  
            this.windowClass.setWindowLayoutFullScreen(false).then(()=>{  
              this.videoHeight = '600vp'  
            })  
          }else{  
            this.windowClass.setWindowLayoutFullScreen(true).then(()=>{  
              this.videoHeight = '100%'  
            })  
          }  
        }).margin(5)  
      }  
    }  
    .alignContent(Alignment.Bottom)  
  }  
}  
  
interface DurationObject {  
  duration: number;  
}  
  
interface TimeObject {  
  time: number;  
}
分享
微博
QQ
微信
回复
2024-09-24 15:25:26
相关问题
HarmonyOS video空间自定义控制器
199浏览 • 1回复 待解决
什么是控制器controller
732浏览 • 1回复 待解决
如何自定义Video组件控制栏样式
2239浏览 • 1回复 待解决
模拟Hilog打印日志,控制不显示
13218浏览 • 4回复 待解决
HarmonyOS Video组件能否设置自定义header
212浏览 • 1回复 待解决
HarmonyOS 自定义弹窗封装后不显示
190浏览 • 1回复 待解决
如何设置swiper指示不显示
846浏览 • 1回复 待解决
HarmonyOS 是否支持自定义装饰
146浏览 • 1回复 待解决
是否支持自定义装饰
2015浏览 • 1回复 待解决
自定义装饰的使用问题
667浏览 • 1回复 待解决
ArkTS是否支持自定义装饰
2266浏览 • 1回复 待解决
HarmonyOS 自定义弹窗遮罩未全屏
442浏览 • 1回复 待解决