0
私はAndroid上でデフォルトのWebview
の代わりにクロスウォーク(XwalkView
)を使用していますが、defaltのpull-to-refresh機能はAndroid 4.3では機能しません。私は5.0でそれをテストしましたが、okですが、4.3と4.2.2では動作しません。私はそれが< 5.0と関係があると思います。クロスウォーク(xwalk)が正常に動作しないようにする
私はそれを有効にするには、このような何かを試してみたが、それが動作するように失敗しました:
//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);
}
}
任意のアイデア?
ありがとうございます!大変感謝しています。 – AndreiBogdan