从WebChromeClient访问活动方法

时间:2015-06-15 16:19:32

标签: javascript android xamarin webchromeclient

我正在使用Xamarin编写一个Android应用程序,在该应用程序中,我有一个webview需要在创建应用程序时加载,在完全加载后,我将一些javascript调用到HTML页面进行设置图表。

我正在尝试使用自定义WebChromeClient来覆盖OnProgressChanged方法,在完全加载时,它会调用MainActivity中的方法。

以下是MainActivity代码:

using System;
using System.Text;
using System.Timers;
using System.Collections;
using Android.App;
using Android.Content;
using Android.Runtime;
using Android.Views;
using Android.Widget;
using Android.OS;
using Android.Text;
using Android.Text.Style;
using Android.Webkit;

public class MainActivity : Activity
{
     WebView graph;

     protected override void OnCreate (Bundle bundle)
     {
          base.OnCreate (bundle);
          SetContentView (Resource.Layout.Main);

          graph = FindViewById<WebView>(Resource.Id.webGraph);

          //Initializes the WebView
          graph.SetWebChromeClient(new myWebChromeClient()); 
          graph.Settings.JavaScriptEnabled = true;
          graph.LoadUrl("file:///android_asset/graph.html");

我创建的myWebChromeClient类看起来像这样:

class myWebChromeClient : WebChromeClient
{
     public override void OnProgressChanged(WebView view, int newProgress)
     {
          base.OnProgressChanged(view, newProgress);

          if (newProgress == 100) {MainActivity.setUpGraph();}
     }
}

myWebChromeClient位于MainActivity范围内,但即使是公共方法,我也无法访问setUpGraph方法。

任何帮助将不胜感激!

1 个答案:

答案 0 :(得分:1)

在myWebChromeClient类中接受并存储MainActivity类型的引用。 只有这样才能在MainActivity中调用setUpGraph()函数。

修改

myWebChromeClient类:

class myWebChromeClient : WebChromeClient
{
     public MainActivity activity;
     public override void OnProgressChanged(WebView view, int newProgress)
     {
          base.OnProgressChanged(view, newProgress);

          if (newProgress == 100) { activity.setUpGraph(); }
     }
}

活动:

    public class MainActivity : Activity
    {
         WebView graph;

         protected override void OnCreate (Bundle bundle)
         {
              base.OnCreate (bundle);
          SetContentView (Resource.Layout.Main);

          graph = FindViewById<WebView>(Resource.Id.webGraph);

          //Initializes the WebView
          myWebChromeClient client = new myWebChromeClient(); 
          client.activity = this;
          graph.SetWebChromeClient(client); 
          graph.Settings.JavaScriptEnabled = true;
          graph.LoadUrl("file:///android_asset/graph.html");

为了简单起见,我已经向客户添加了一个公共变量,请不要在生产中使用相同的变量。在构造函数中传递引用或使用get-set。