我有一个正在使用 WebView 查看的移动网页,但由于某种原因,它以不同的方式呈现边框 - 1px 或 2px 厚。有人经历过吗?
所以下面的示例图片显示了一个 1px 顶部和 1px 底部边框的 div 是如何以 1px 顶部和 2px 底部呈现的。这个问题也出现在其他地方,这使得设计看起来很便宜......
有什么建议么?
一些代码
活动
import android.app.Activity;
import android.os.Bundle;
import android.view.Window;
import android.view.WindowManager;
import android.webkit.WebSettings;
import android.webkit.WebView;
import android.webkit.WebViewClient;
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
this.requestWindowFeature(Window.FEATURE_NO_TITLE);
this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);
setContentView(R.layout.activity_main);
deleteDatabase("webview.db");
deleteDatabase("webviewCache.db");
WebView mywebview = (WebView) findViewById(R.id.webview);
mywebview.loadUrl("http://example.mobi/");
WebSettings webSettings = mywebview.getSettings();
webSettings.setJavaScriptEnabled(true);
//webSettings.setBuiltInZoomControls(true);
mywebview.setWebViewClient(new WebViewClient());
}
}
XML
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
tools:context=".MainActivity" >
<WebView android:id="@+id/webview"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
/>
</RelativeLayout>
HTML
...
<meta name="viewport" content="target-densitydpi=device-dpi; width=device-width; initial-scale=1; minimum-scale=1; maximum-scale=1; user-scalable=0;">
<div id="mobilesStatusSubmit">
post status
</div>
....
CSS
div#mobilesStatusSubmit{
width: 100%;
height: 30px;
padding-top:10px;
font-size: 16px;
font-weight: bold;
color: #2684b0;
text-align: center;
background: white;
display: block;
border-top: 1px solid #bbbbbb;
border-bottom: 1px solid #bbbbbb;
}
电话
Galaxy S2