Q小文Q
Q小文Q
  • 发布:2025-03-27 11:47
  • 更新:2025-03-27 11:47
  • 阅读:42

【报Bug】安卓端,uni-app nvue的input,nvue里的web-view加载h5页面的input弹出的软键盘的mode:adjustResize、adjustPan怎么设置都无效

分类:uni-app

产品分类: uniapp/App

PC开发环境操作系统: Windows

PC开发环境操作系统版本号: Windows 11

HBuilderX类型: 正式

HBuilderX版本号: 4.29

手机系统: Android

手机系统版本号: Android 14

手机厂商: 一加

手机机型: ace2

页面类型: nvue

vue版本: vue2

打包方式: 云端

项目创建方式: HBuilderX

示例代码:

index.nvue的示例代码

<template>  
    <view class="yd-index">  
        <input class="yd-index-input" placeholder="nvue的顶部输入框"/>  
        <web-view class="yd-index-content" :webview-styles="webStyle" :src="webSrc"></web-view>  
        <input class="yd-index-input" placeholder="nvue的底部输入框"/>  
    </view>  
</template>  
<script>  
    export default {  
        data() {  
            return {  
                webSrc: '/hybrid/html/test/index.html',  
                webStyle: {  
                    progress: false  
                },  
            }  
        },  
        onLoad() {  
        },  
        methods: {  
        }  
    }  
</script>  
<style>  
    .yd-index {  
        flex: 1;  
        display: flex;  
        flex-direction: column;  
    }  
    .yd-index-content {  
        flex: 1;  
    }  
    .yd-index-input {  
        border: 1rpx solid #000000;  
        height: 100rpx;  
        border-radius: 10rpx;  
    }  
</style>

/hybrid/html/test/index.html的示例代码。

<!DOCTYPE html>  
<html lang=zh-CN>  
    <head>  
        <meta charset="utf-8">  
        <meta http-equiv="X-UA-Compatible" content="IE=edge">  
        <!-- viewport-fit=cover 不设置的话,IOS会间隔状态栏,Android正常 -->  
        <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, viewport-fit=cover" />  
        <title>error</title>  

        <style>  
            html,  
            body {  
                width: 100vw;  
                height: 100vh;  
                margin: 0;  
                padding: 0;  
                box-sizing: border-box;  
            }  
            .yd-test {  
                height: 100%;  
                width: 100%;  
                display: flex;  
                flex-direction: column;  
                border: 1px solid red;  
            }  
            .yd-test-input {  
                height: 30px;  
            }  
        </style>  

        <script>  
        </script>  
    </head>  
    <body>  
        <div class="yd-test">  
            <div>Webview的测试页面</div>  
            <input class="yd-test-input" placeholder="H5的顶部输入框"/>  
            <div style="flex: 1;"></div>  
            <input class="yd-test-input" placeholder="H5的底部输入框"/>  
        </div>  
    </body>  
</html>

操作步骤:
  1. HBuildex4.29新建项目-默认模版-vue2
  2. 新建index.nvue,参考代码示例或者附件里的代码。
  3. 新建/hybrid/html/test/index.html,参考代码示例或者附件里的代码。
  4. 运行标准基座到真机手机:一加Ace2、realme 真我等。

预期结果:
  1. index.nvue里的input没有达到设置adjustResize、adjustPan的效果
  2. nvue里的web-view加载h5页面的input没有达到设置adjustResize、adjustPan的效果

实际结果:
  1. index.nvue里的input没有达到设置adjustResize、adjustPan的效果
  2. nvue的input弹出的软键盘永远表现出adjustPan的特性
  3. 在没点击nvue的input前,nvue里的web-view加载h5页面的input弹出的软键盘永远表现出adjustResize的特性
  4. 在点击nvue的input弹出软件盘后,nvue里的web-view加载h5页面的input弹出的软键盘不会压缩窗口高度,也不会把窗口整体上移
    真是奇葩的bug,求大佬们解决

bug描述:

【报Bug】安卓端,uni-app nvue的input,nvue里的web-view加载h5页面的input弹出的软键盘的mode:adjustResize、adjustPan怎么设置都无效。具体问题现象如下
1.无论我在manifest.json设置,还是在pages.json里设置adjustResize、adjustPan,都无效
manifest.json:
"softinput": {
"mode": "adjustResize"
},
pages.json:
"app-plus": {
"softinputmode": "adjustResize"
}

  1. nvue的input弹出的软键盘永远表现出adjustPan的特性
  2. 在没点击nvue的input前,nvue里的web-view加载h5页面的input弹出的软键盘永远表现出adjustResize的特性
  3. 在点击nvue的input弹出软件盘后,nvue里的web-view加载h5页面的input弹出的软键盘不会压缩窗口高度,也不会把窗口整体上移
    真是奇葩的bug,求大佬们解决
2025-03-27 11:47 负责人:无 分享
已邀请:

要回复问题请先登录注册