gpt4 book ai didi

android - 在 web View 中的 HTML 中分层

转载 作者:太空狗 更新时间:2023-10-29 15:19:35 27 4
gpt4 key购买 nike


我有一个 html Assets ,感谢 android 中的 webview。在当前的浏览器中显示效果很好,但在较旧的浏览器(如 Android 2.1)中会出现您在图像中看到的内容。

First image of my app Fail


我把代码放上去,以防有人想看。
HTML

 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Documento sin título</title>
<script>
function show(divactual,textactual) {
if(document.getElementById(divactual).style.display == "block"){
document.getElementById(divactual).style.display = "none";
document.getElementById(textactual).innerHTML = "show details...";

}
else if(document.getElementById(divactual).style.display == "none"){
document.getElementById(divactual).style.display = "block";
document.getElementById(textactual).innerHTML = "hidden details...";
}
}
</script>
<style type="text/css">
body{
background-color:transparent;
font-family: Verdana, Geneva, sans-serif;
font-size: 1.0em;
font-style: normal;
color:#999999;
margin:10px;
}
body a{
color:#0CF;
text-decoration:none;
}
#bg {
z-index: -14;
width: 100%;
}
#letrapequena {
font-family: Verdana, Geneva, sans-serif;
font-size: 0.6em;
color: #00537c;
}
#tituloseccion{
font-family: Verdana, Geneva, sans-serif;
font-size: 1.5em;
font-style: normal;
font-weight: bold;
color:#7AB800;
}
#headtwo{
font-family: Verdana, Geneva, sans-serif;
font-size: 1.2em;
font-style: normal;
font-weight: bold;
color:#7AB800;
}
#headthree{
font-size: 1.1em;
font-style: normal;
font-weight:bold;
color:#00537C;
}
#container{
background-color:#D8F7FE;
margin:10px 0;
color:#00537c;
font-weight:bold;
}
</style>
</head>
<body style="background-color:transparent;">
<div id="tituloseccion">
Titleone
</div>
<hr align="left" width="90%" size="0.1em" color="#999999">
<div id="headtwo">titletwo</div>
<div id="bigcontainer" style="display:block;">
<div id="headthree">titlethree</div>
<div id="generalcont" style="display:block;">
<div id="container" style="display:block;">
<div style="display:inline">parrone&nbsp;&nbsp;&nbsp;</div>
<div style="display:inline;">
<a href="javascript:show('info1','text1');" id="text1">show datails...</a>
</div>
</div>
<div id="info1" style="display:none;" >
text text text text text text text text
</div>
</div>

<div id="generalcont" style="display:block;">
<div id="container" style="display:block;">
<div style="display:inline">parrtwo&nbsp;&nbsp;&nbsp;&nbsp;</div>
<div style="display:inline;">
<a href="javascript:show('info2','text2');" id="text2">show details...</a>
</div>
</div>
<div id="info2" style="display:none;" >
text text text text text text text
</div>
</div>
</div>
<div id="letrapequena" style="display:block;">
text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text
</div>
</body>
</html>


Java

 package es.ibys.prueba.webview;

import android.app.Activity;
import android.graphics.Color;
import android.os.Bundle;
import android.webkit.WebView;

public class PruebawebviewActivity extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);

WebView myWview = (WebView) findViewById(R.id.webview);

String miurl = "file:///android_asset/index2.htm";
myWview.getSettings().setJavaScriptEnabled(true);
myWview.setBackgroundColor(Color.TRANSPARENT);
myWview.loadUrl(miurl);
}
}


我不知道怎么解决。我试过改变图层、css、div、样式……我想到的一切。有没有人出事你是怎么做到的?请帮忙

最佳答案

你确定这不是你的 JS 的问题吗?

这是一个包含您的代码的 fiddle :http://jsfiddle.net/8wsvu/

纯JS中的show()函数是Android函数,还是应该是JS?我在 JS 方面还不够好,不知道它是否是,但谷歌搜索没有结果,因为它是一个 JS 函数。

我对它为什么分层错误的第二个猜测是因为 div 是绝对定位在彼此之上的。

如果您可以使用 jQuery 来显示和隐藏页面上的元素,这会简单很多。

关于android - 在 web View 中的 HTML 中分层,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10997678/

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