完善资料让更多小伙伴认识你,还能领取20积分哦, 立即完善>
可以考虑去掉Scrillview看一下
代码如下 ohos:height="match_parent" ohos:width="match_parent" ohos:orientation="vertical"> ohos:height="0fp" ohos:weight="1" ohos:width="match_parent"> ohos:width="match_parent" ohos:background_element="$color:blue" ohos:text="tetxtx" ohos:text_size="24vp" ohos:text_alignment="center"/> package com.example.jsdemo.slice; import com.example.jsdemo.ResourceTable; import com.example.jsdemo.utils.HiLogUtils; import ohos.aafwk.ability.AbilitySlice; import ohos.aafwk.content.Intent; import ohos.agp.components.webengine.*; import ohos.media.image.PixelMap; public class WebviewSlice extends AbilitySlice { private static final String EXAMPLE_URL = "https://main.m.taobao.com/"; @Override protected void onStart(Intent intent) { super.onStart(intent); setUIContent(ResourceTable.Layout_webview_slice); WebView webView = (WebView) findComponentById(ResourceTable.Id_webview); WebConfig webConfig = webView.getWebConfig(); webConfig.setJavaScriptPermit(true); webConfig.setWebStoragePermit(true); webConfig.setDataAbilityPermit(true); webConfig.setLoadsImagesPermit(true); webConfig.setMediaAutoReplay(true); webConfig.setLocationPermit(true); webConfig.setSecurityMode(WebConfig.SECURITY_SELF_ADAPTIVE); webView.setWebAgent(new WebAgent() { @Override public void onLoadingPage(WebView webview, String url, PixelMap favicon) { super.onLoadingPage(webview, url, favicon); // 页面开始加载时自定义处理 HiLogUtils.PrintLog("onLoadingPage======>>>"); } @Override public void onPageLoaded(WebView webview, String url) { super.onPageLoaded(webview, url); // 页面加载结束后自定义处理 HiLogUtils.PrintLog("onPageLoaded======>>>"); } @Override public void onLoadingContent(WebView webview, String url) { super.onLoadingContent(webview, url); // 加载资源时自定义处理 HiLogUtils.PrintLog("onLoadingContent======>>>"); } @Override public void onError(WebView webview, ResourceRequest request, ResourceError error) { super.onError(webview, request, error); // 发生错误时自定义处理 HiLogUtils.PrintLog("onError======>>>"+error.getInfo()); } }); webView.load(EXAMPLE_URL); } } 效果如图所示 |
|
|
|
建议代码部分不要截图,直接贴代码(论坛的编辑器支持显示代码)。这样方便小伙伴验证问题。
1. 没有跑代码,我估计是你配置的问题,ScrollView+DirectionalLayout,一般情况要把`DirectionalLayout`的高度设置成包裹内容`ohos:height="match_content"`,你这样设置试一试。 2. 鸿蒙的WebView确实会遮挡其他控件,但不是在这种布局。在DependentLayout或StackLayout中使用WebView会遮挡其它控件。 |
|
|
|
你正在撰写答案
如果你是对答案或其他答案精选点评或询问,请使用“评论”功能。
424 浏览 0 评论
737 浏览 0 评论
647 浏览 0 评论
线上逛展 | 沉浸探索第三届OpenHarmony技术大会五大展区
610 浏览 0 评论
901 浏览 0 评论
浏览过的版块 |
小黑屋| 手机版| Archiver| 电子发烧友 ( 湘ICP备2023018690号 )
GMT+8, 2024-11-9 02:34 , Processed in 0.528451 second(s), Total 72, Slave 55 queries .
Powered by 电子发烧友网
© 2015 bbs.elecfans.com
关注我们的微信
下载发烧友APP
电子发烧友观察
版权所有 © 湖南华秋数字科技有限公司
电子发烧友 (电路图) 湘公网安备 43011202000918 号 电信与信息服务业务经营许可证:合字B2-20210191 工商网监 湘ICP备2023018690号