HarmonyOS webview 和 listview 在scroll内嵌套使用,webview中有video标签,点击video的全屏,页面显示异常,不能全屏显示

HarmonyOS
1天前
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
superinsect
import { webview } from '@kit.ArkWeb';

@Entry
@Component
export struct TestScrollPage {
  private URL: string = 'https://mbmodule-staticres.paas.cmbchina.com/mb5web/default.html';
  private controller: WebviewController = new webview.WebviewController()

  build() {
    Scroll(){
      Column(){
        Web({ src: this.URL, controller: this.controller })
          .onPageBegin(()=>{
          })
          .onPageEnd(()=>{
            console.error("web load finish")
          })
          .width("100%")
            // .height("100%")
          .domStorageAccess(true)
          .layoutMode(WebLayoutMode.FIT_CONTENT)
        // .zoomAccess(false)
        //
        // .overviewModeAccess(true)
        // .imageAccess(true)
        // .onlineImageAccess(true)
        // .fileAccess(true)
        // .databaseAccess(true)

        Column() {
          Text('联系我们').fontColor(Color.Black)
            .fontWeight(500).fontSize(18)
        }
        .height(50)
      }
      .width("100%")
    }
    .width('100%')
    .height("100%")
    .scrollBar(BarState.On)
  }
}
分享
微博
QQ
微信
回复
1天前
相关问题
video requestFullscreen 全屏问题
954浏览 • 1回复 待解决
HarmonyOS 页面如何设置全屏显示
426浏览 • 1回复 待解决
HarmonyOS webview加载页面无法显示
663浏览 • 1回复 待解决
HarmonyOS webview显示白屏
235浏览 • 1回复 待解决
如何禁用窗口全屏显示功能
1845浏览 • 1回复 待解决
startWindowIcon可以设置全屏显示吗?
867浏览 • 1回复 待解决
禁用窗口全屏显示功能如何实现?
386浏览 • 1回复 待解决
Dialog如何覆盖状态栏全屏显示
10406浏览 • 1回复 待解决