1

我正在 WebView 中加载一些 HTML 内容,但它总是出现在我的 WebView 的左上角。

我也尝试使用样式表,在样式表中我添加了与中心相关的标签,但它没有进入中心。样式表中的其他标签工作正常。

如何在 WebView 中设置内容垂直和水平居中?

我的 HTML 代码

<html><head>  <style type=\"text/css\"> @font-face { font-family: MyCustomFont;  src:url(\"file:///android_asset/fonts/MyriadPro-Regular.otf\") } body { font-family: MyCustomFont; font-size:14; text-align: center;vertical-align:middle;line-height: normal;} </style> </head><body> Hello World </body></html>
4

2 回答 2

3

试试这个:

<html>
<head>
  <style type="text/css"> 
@font-face { font-family: MyCustomFont;  
src:url("~/android_asset/fonts/MyriadPro-Regular.otf") } 
#text{ font-family: MyCustomFont; 
font-size:14; 
text-align: center;
margin:350px;
line-height: normal;
color:blue;
height:20px;
width:100px;
margin:auto;
background-color:red;
} 
</style> 
</head>
<body>
<p id="text"> Hello World</p>
 </body>
</html>  

而且我认为您的地址源字体是错误的!

于 2013-01-10T12:29:56.353 回答
-2
<WebView android:id="@+id/webview1" 
  android:layout_gravity="center"
  android:scaleType="centerInside"
  android:layout_width="wrap_content" 
  android:layout_height="fill_parent"
  android:adjustViewBounds="true">

它可能会帮助你。

于 2013-01-10T12:13:17.943 回答