XwalkView
Androidのデフォルトの代わりにCrosswalk ( ) を使用していますが、デフォルトWebview
の 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);
}
}
何か案は ?