在Android 4.4.2上使用flexbox的问题

时间:2016-12-20 22:52:19

标签: android html cordova flexbox android-4.4-kitkat

我继承了一些使用Cordova在iOS中运行良好的Flexbox代码。我们现在正尝试部署到Android,支持KitKat及更高版本。

我有一些Flexbox代码在Android 4.4.4,5.x和6.X中运行良好但在4.4.2中失败。我有一台运行4.4.2的HTC One Mini,并且已经在亚马逊设备农场的其他几台4.4.2机器上试用了它。我已经读过4.4.2中有一些已知的flexbox问题,但没有提出解决方案。

当我在4.4.2上运行此代码时,swiper-container中没有任何内容。在其他版本(和iOS)上,我得到一张图片,然后可以滑动以查看其他图片。

任何想法都将不胜感激!

  • 乔恩

这是我的flexbox css:

.swiper-slide {
    margin: auto;
    text-align: center;
    font-size: 18px;

    /* Center slide text vertically */
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

#swiperPic1 {
    background-image:url(../assets/screen-1.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

#swiperPic2 {
    background-image:url(../assets/screen-2.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

#swiperPic3 {
    background-image:url(../assets/screen-3.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

#swiperPic4 {
    background-image:url(../assets/screen-4.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

0 个答案:

没有答案