人行横道(xwalk)拉刷新不工作

Crosswalk (xwalk) pull to refresh not working

我在 Android 上使用人行横道 (XwalkView) 而不是默认的 Webview,但默认的下拉刷新功能似乎不适用于 Android 4.3。我在5.0上测试过没问题,但是在4.3和4.2.2上就不行了。我猜这与 < 5.0 ?!

有关

我已经尝试过类似的方法来启用它,但它失败了:

    //Disable the edge effect and try to enable pull to refresh in case we're using xwalk webviews
    if (BuildConfig.IS_XWALK) {
        final String INIT_SWITCHES[] = {"Xwalk", "--enable-pull-to-refresh-effect", "--disable-overscroll-edge-effect"};
        if (!CommandLine.isInitialized()) {
            CommandLine.init(INIT_SWITCHES);
        }
    }

有什么想法吗?

实际上,我们已经有关于此功能的 JIRA,请在此处跟踪:https://crosswalk-project.org/jira/browse/XWALK-6277

它之前有一些阻塞问题,但我们将继续研究如何实现它。