我在Android上使用Crosswalk(XwalkView
)而不是默认Webview
,但似乎defalt pull-to-refresh功能在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);
}
}
有什么想法吗?
答案 0 :(得分:1)
实际上,我们已经有关于此功能的JIRA,请在此处跟踪:https://crosswalk-project.org/jira/browse/XWALK-6277。
之前有一些阻止问题,但我们会继续研究如何实施它。