美文网首页
android 疑难杂症

android 疑难杂症

作者: MOMOsShare | 来源:发表于2018-06-01 14:43 被阅读0次

    1.WebView 输入框无法被输入法顶起 。输入法遮挡输入框。

    if(/Android/gi.test(navigator.userAgent)) {

    }

    window.addEventListener('resize', function () {

        if (document.activeElement.tagName == 'INPUT' || document.activeElement.tagName == 'TEXTAREA') {

            window.setTimeout(function () {

                $('.confirm').scrollIntoViewIfNeeded();

            }, 0);

        }

    })

    2.Dialog内存泄漏

    3.加载ios拍的照片 出现旋转exif

    图片后缀加"?imageMogr2/auto-orient"

    相关文章

      网友评论

          本文标题:android 疑难杂症

          本文链接:https://www.haomeiwen.com/subject/itqksftx.html