Android webview不会显示适合屏幕的内部存储的HTML

时间:2013-02-28 02:30:04

标签: android html webview

它只是一个简单的文字,显示在AVD的左上角

setContentView(R.layout.activity_main);

WebView myWebView = (WebView) findViewById(R.id.webview);

myWebView.getSettings().setLoadWithOverviewMode(true);
myWebView.getSettings().setUseWideViewPort(true);

WebSettings webSettings = myWebView.getSettings();
webSettings.setJavaScriptEnabled(true);
myWebView.loadUrl("file:///android_asset/new2.html");

这是非常基本的xml我将在完成此操作后添加更多小部件。

<LinearLayout 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"
   android:orientation="vertical"
   tools:context=".MainActivity" >
  <WebView android:id="@+id/webview"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">
  </WebView>
</LinearLayout>

1 个答案:

答案 0 :(得分:1)

enter image description here我不确定这是不是你的意思,但我想你想要显示html文件并适合屏幕。

我刚刚制作了一个项目,它正在运作。

xml:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity" >

    <WebView
        android:id="@+id/webView1"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />

</LinearLayout>

MainActivity

protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        WebView myWebView = (WebView) findViewById(R.id.webView1);

        myWebView.getSettings().setLoadWithOverviewMode(true);

        myWebView.getSettings().setUseWideViewPort(true);

        WebSettings webSettings = myWebView.getSettings();

        webSettings.setJavaScriptEnabled(true);

        myWebView.loadUrl("file:///android_asset/new2.html");
    }

修改 你的webview不是问题,它正在填满屏幕。这是你需要改变的HTML。我不擅长网络内容,但我确信有办法解决这个问题,但这与Android无关。在此期间,如果您愿意,可以添加缩放此代码以添加缩放控件:

myWebView.getSettings().setBuiltInZoomControls(true); 
myWebView.getSettings().setSupportZoom(true);