gpt4 book ai didi

android - 在 android 中滚动时选项卡图标恶化

转载 作者:行者123 更新时间:2023-11-28 00:14:34 24 4
gpt4 key购买 nike

我正在使用 phonegap 构建 android 应用程序。我现在面临的问题是,当我在 ListView 中向下滚动时,底部的选项卡图标边框变得粗糙和恶化。有人可以帮我弄清楚为什么会这样以及如何解决吗?我正在使用 css 添加所有图像。

更新

这是我的代码

CSS

footer {
position:fixed;
width: 100%;
height: 60px;
bottom:0;
left:0;
padding: 0;
line-height: 100px;
z-index:2;
background: url(../../assets/img/tabbg.png) repeat-x;
}
footer ul {
list-style-type: none;
margin: 0; padding: 0;
text-align: center;
}
footer ul li {
display: block;
float: left;
width: 33%; line-height: 50px;
margin-right: 0.5%;
height: 58px;
text-align: center;
overflow: hidden;
}
footer ul li.one {
margin-left: 0.5%;
}
footer ul li a {
display: block;
text-decoration: none;
margin: 1px;
height: 100%; width: 100%;
}
footer ul li a.home {
background: url(../../assets/img/home3.png) center no-repeat;
}
footer ul li a.profile {
background: url(../../assets/img/camera2.png) center no-repeat;
}
footer ul li a.cam {
background: url(../../assets/img/profile2.png) center no-repeat;
}

这是我的标签HTML

<footer>
<ul>
<li class="one"><a href="#" rel="home" class="home tabs"></a></li>
<li><a href="#" rel="camera" class="profile tabs"></a></li>
<li><a href="#" rel="profile" class="cam tabs"></a></li>
</ul>
</footer>

最佳答案

如果没有确切地看到您遇到的问题,很难知道是否是这个问题,但是我在将我在 PhoneGap 中为 iPhone 构建的应用程序移植到 Android(仍在使用 PhoneGap)时遇到了问题。

我发现使用 position Fixed 会导致问题,而且我在使用 width:100%(试图迎合任何宽度的手机)而不是特定像素值时也遇到了问题。在整页 div 上使用 overflow:hidden 似乎也很不稳定。

我遇到了元素会消失并重新出现的显示问题。我在使用 css rotate 时仍然遇到问题。

使用 position:absolute 并使用 window.innerWidth 和 innerHeight 设置页面大小的 div 尺寸似乎可以解决问题。

恐怕有点不具体,但它可能会有所帮助..

关于android - 在 android 中滚动时选项卡图标恶化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12989739/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com