我在WebView中加载了一些HTML内容,但它总是位于我的WebView的左上角。
我也试过使用样式表,在样式表中我添加了与中心相关的tages,但它没有进入中心。样式表中的其他标签工作正常。
如何在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>
答案 0 :(得分: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>
我认为您的地址来源字体有误!
答案 1 :(得分:-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">
它可能对你有帮助。