如何在项目类型“ Android AppXamarin”中使用RefreshView

问题描述

我在VS2019中创建了一个类型为“ Android App(Xamarin)”的项目,该项目具有以下activity_main.xml:

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout 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/web"
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent"

    />
</LinearLayout>

我有一些代码,使用管道将三星平板电脑上内置的NFC阅读器中的值传递到加载到WebView的网页中,并且一切正常。

但是,如果页面加载停止或用户由于某种原因在网页中出现错误,则无法刷新页面。我想添加下拉菜单来刷新,从左到右再拉回去也很酷,但是在这篇文章中,我将重点放在下拉菜单上进行刷新。

我找到了一个Xamarin Forms示例,该示例说明如何使用RefreshView实现此目的,但它似乎在仅Android项目中无效。

如何在我的“ Android App(Xamarin)”项目中使用RefreshView,还是有更好的方法呢?

我的目标是Android 9.0。

感谢您的时间。

解决方法

一个简单的示例如下:

public class RefreshWebView : Activity,SwipeRefreshLayout.IOnRefreshListener,SwipeRefreshLayout.IOnChildScrollUpCallback
{
    private WebView webView;

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

        SetContentView(Resource.Layout.refresh_webview);
        SwipeRefreshLayout swipeRefreshLayout = FindViewById<SwipeRefreshLayout>(Resource.Id.swipe_fresh);
        webView = FindViewById<WebView>(Resource.Id.web);
        webView.LoadUrl("https://www.google.com");
        webView.SetWebViewClient(new MyWebClient(swipeRefreshLayout));
        swipeRefreshLayout.SetOnRefreshListener(this);
        swipeRefreshLayout.SetOnChildScrollUpCallback(this);
     
    }
    public void OnRefresh()
    {
         webView.LoadUrl(webView.Url.ToString());
    }

    public bool CanChildScrollUp(SwipeRefreshLayout parent,View child)
    {
        return webView.ScrollY > 0;
    }

    class MyWebClient : WebViewClient
    {
        SwipeRefreshLayout swipeRefresh;
        public MyWebClient(SwipeRefreshLayout swipeRefreshLayout)
        {
            swipeRefresh = swipeRefreshLayout;
        }

        public override bool ShouldOverrideUrlLoading(WebView view,IWebResourceRequest request)
        {
            view.LoadUrl(request.Url.ToString());
            return true;
        }

        public override void OnPageFinished(WebView view,string url)
        {
            base.OnPageFinished(view,url);
            if (swipeRefresh.Refreshing)
            {
                swipeRefresh.Refreshing = false;
            }
        }
    }     
}

xaml:

<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.SwipeRefreshLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/swipe_fresh"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    >

  <WebView  
    android:id="@+id/web"
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent"/>

</android.support.v4.widget.SwipeRefreshLayout>

相关问答

依赖报错 idea导入项目后依赖报错,解决方案:https://blog....
错误1:代码生成器依赖和mybatis依赖冲突 启动项目时报错如下...
错误1:gradle项目控制台输出为乱码 # 解决方案:https://bl...
错误还原:在查询的过程中,传入的workType为0时,该条件不起...
报错如下,gcc版本太低 ^ server.c:5346:31: 错误:‘struct...