适用于Android WebView的网页

时间:2014-04-08 06:02:01

标签: android webview xamarin-studio

我在ASP.NET中有一个网页,现在我正在使用 Xamarin 创建一个Android应用程序,用户可以通过该网页访问此网页。我正在使用WebView

我面临的问题是网页的内容不适合WebView,可能这似乎是一个重复的问题,但我在以前的帖子中没有得到正确的答案。

我的布局代码是:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">
    <WebView 
        android:id="@+id/webview1"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent" />
</RelativeLayout>

MainActivity代码

namespace DsclQuery
{
    [Activity (Label = "DsclQuery", MainLauncher = true, Theme = "@android:style/Theme.NoTitleBar")]
    public class MainActivity : Activity
    {
        WebView webview;

        protected override void OnCreate (Bundle bundle)
        {
            base.OnCreate (bundle);

            // Set our view from the "main" layout resource
            SetContentView (Resource.Layout.Main);
            webview = FindViewById<WebView> (Resource.Id.webview1);
            webview.LoadUrl ("http://www.dsclsugar.com/QuerySecure");
            webview.SetWebViewClient (new dsclQueryWebViewClient());
            webview.Settings.JavaScriptEnabled = true;
            webview.Settings.UseWideViewPort = true;
            webview.Settings.BuiltInZoomControls = true;
        }
    }

screen shot of AVE

我该怎么做?

1 个答案:

答案 0 :(得分:0)

尝试此代码:

webview.getSettings().setJavaScriptEnabled(true);
webview.loadUrl("your url");

int scale = (int) (100 * webview.getScale());
webview.setInitialScale(scale);

webview.getSettings().setLoadWithOverviewMode(true);
webview.getSettings().setBuiltInZoomControls(true);

它的Android原生代码,我想你可以理解!

我希望它会有用。谢谢。