我正在使用一个波思语,装上一些地方的html,把图像作为背景,在我开始装上网上电文的活动时,我会在图像负荷之前有一个非常简短的白色屏幕闪光。 这不是一件大事,但我想避免。 我曾试图确定与黑人有关的所有因素的背景,但这种背景仍然存在......任何想法?
这里我是:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>NerdRAGE</title>
<style>
* { margin: 0; padding: 0; }
html {
background: url(images/10_1.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
</style>
</head>
<body bgcolor="#000000">
</body>
</html>
这里,我的XML:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:background="#000000" android:layout_width="fill_parent" android:layout_height="fill_parent">
<WebView
android:id="@+id/mapview"
android:background="#000000" android:scaleType="centerInside" android:layout_gravity="center_vertical|center_horizontal" android:clickable="false" android:fitsSystemWindows="true" android:scrollbars="none" android:layout_width="fill_parent" android:layout_height="fill_parent"/>
</LinearLayout>