gpt4 book ai didi

android - Webview + CSS3 无法在较小的屏幕上正确缩放图像

转载 作者:行者123 更新时间:2023-11-29 16:18:36 24 4
gpt4 key购买 nike

我正在使用 Webview 和一些 css3 加载图像,并让它缩放以在任何尺寸的 Android 设备上填满屏幕。

不幸的是,我收到报告称在较小的屏幕上,图像无法正确缩放并被剪裁。裁剪图像时,它也不可滚动。我想让它缩放以在任何设备上填满屏幕,但如果这不可能,它至少应该是可滚动的。

代码如下:

HTML

<!DOCTYPE html>
<html>

<head>
<meta charset="UTF-8">

<title>*************</title>

<style>
* { margin: 0; padding: 0; }

html {
background: url(images/1_1.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}

#page-wrap { width: 400px; margin: 50px auto; padding: 20px; background: white; -moz-box-shadow: 0 0 20px black; -webkit-box-shadow: 0 0 20px black; box-shadow: 0 0 20px black; }
p { font: 15px/2 Georgia, Serif; margin: 0 0 30px 0; text-indent: 40px; }
</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>

有什么想法吗?

最佳答案

如果您在 html 中只有一张图片并且希望图片的宽度适合设备,您可以只使用以下代码:

<head>
<meta name="viewport" content="target-densitydpi=device-dpi, width=device-width" />
</head>

如果您的 html 很复杂并且您想要控制 html 在不同密度设备上显示的更多细节,比如对不同密度设备使用不同的 CSS。阅读这个安卓document .我认为它会对您有所帮助。

关于android - Webview + CSS3 无法在较小的屏幕上正确缩放图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8359405/

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