我在Android应用程序中有一个WebView,其中我想渲染一个全高的div。显然,这在Chrome或任何其他浏览器中都很容易实现。这是在Chrome中运行良好的代码。
<!DOCTYPE html>
<html>
<head>
<style>
html, body { height: 100%; }
body > div { height: 100%; background: yellow; }
</style>
</head>
<body>
<div>I should be full height</div>
</body>
</html>
在Chrome中,它看起来像这样:
如何在WebView中使div渲染到全高?我也尝试了vh
单元,flexbox,一个视口元标记,但是一切似乎都失败了,因为正文没有真正的高度。
答案 0 :(得分:2)
MainActivity.java
package com.dru.experiment;
import android.graphics.Color;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.webkit.WebView;
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
WebView wv = (WebView) findViewById(R.id.webView);
wv.setBackgroundColor(Color.rgb(40,40,40));
wv.loadUrl("file:///android_asset/index.html");
}
}
activity_main.xml(布局文件)
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<WebView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/webView"
android:visibility="visible" />
</LinearLayout>
资产/ index.html中
<!DOCTYPE html>
<html>
<head>
<style>
html, body { height: 100%; }
body > div { height: 100%; background: yellow; }
</style>
</head>
<body>
<div>I should be full height</div>
</body>
</html>
styles.xml
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style>
</resources>
我的结果:
如果问题只是关于你的HTML代码,那就行了。
如果它是关于webView的,我不确定为什么你的结果div不是黄色的。也许你在布局中忘记了match_parent的宽度和高度(或者用于动态创建视图的java文件)。