0

在我的应用程序中,它有一个 webview 和链接按钮。
如果我点击按钮,webview 会加载目标页面。

有些页面适合 webview 并且看起来不错,但有些则不然。
在每个加载的页面中,他们都有这个

<meta name="viewport" content="width=device-width, initial-scale=0.8">

所以他们应该看起来都一样:(

我的代码有什么问题?

public class MainActivity extends Activity {

    private ActionBar mActionBar;
    private SimpleSideDrawer mNav;
    WebView myWebView;  

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

        myWebView = (WebView)findViewById(R.id.webView1);
        myWebView.setWebViewClient(new WebViewClient());
        myWebView.getSettings().setJavaScriptEnabled(true);
        myWebView.loadUrl("http://example-site.com/");          
        myWebView.getSettings().setSupportZoom(true); 
        myWebView.getSettings().setLoadWithOverviewMode(true);
        myWebView.getSettings().setUseWideViewPort(true); 
    }
}   


//This will be called when the button is clicked

public void loadThisUrl(String url) {
    mNav.closeLeftSide();
    mNav.closeRightSide();

    myWebView.loadUrl(url);
}   

更新

<RelativeLayout 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"
        android:layout_alignParentBottom="true"
        android:layout_centerHorizontal="true" />

</RelativeLayout>
4

1 回答 1

0

尝试将其用于您的网络视图

 <WebView
        android:id="@+id/webView1"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_alignParentBottom="true"
        android:layout_alignParentLeft="true"
        android:layout_alignParentRight="true"
        android:layout_alignParentTop="true"
        android:layout_centerHorizontal="true" />
于 2013-08-14T13:10:57.067 回答