Android WebView用のJS SDKを作成して、デバイスの向きとモーションを収集します。SDKは、ウィンドウのdeviceorientation
およびdevicemotion
イベントを次のようにリッスンします:
window.addEventListener('devicemotion', (event) => {...})
window.addEventListener('deviceorientation', (event) => {...})
一部のデバイス/統合で、センサーデータを取得できません。私は「悪い」統合を模倣して、以下をアプリマニフェストに追加することによってWebViewセンサーのアクセスをブロックしようとしましたが、運がありませんでした。 JSイベントは引き続きトリガーされます。
<activity
Android:screenOrientation="portrait"
Android:configChanges="keyboardHidden|orientation|screenSize"
JSをすべて無効にする以外に、WebViewがイベントをトリガーするのをブロックする他の可能な方法は何ですか?
更新:洞察:
最も問題のあるデバイスは次のとおりです:
更新2
IOS一部のデバイスでは同様の問題がありますが、最も問題なのは次のとおりです:
Androidを介してJSイベントのトリガーのみを停止することはできません。必要に応じて、JS全体を無効にします。
//disabled
wView.getSettings().setJavaScriptEnabled(false);
//enabled
wView.getSettings().setJavaScriptEnabled(true);
一部のデバイスではセンサーデータを取得できないとおっしゃっていましたが、そのためには、webview declerationコードを確認する必要があります。サンプルコードはこちらです:
wView= new WebView(this);
wView.getSettings().setLoadsImagesAutomatically(true);
wView.getSettings().setJavaScriptEnabled(true);
wView.setScrollBarStyle(View.SCROLLBARS_INSIDE_OVERLAY);
wView.setWebViewClient(new WebViewClient() {
@SuppressWarnings("deprecation")
@Override
public void onReceivedError(WebView view, int errorCode, String description, String failingUrl) {
Toast.makeText(MainActivity.this, description, Toast.LENGTH_SHORT).show();
}
@TargetApi(Android.os.Build.VERSION_CODES.M)
@Override
public void onReceivedError(WebView view, WebResourceRequest req, WebResourceError rerr) {
// Redirect to deprecated method, so you can use it in all SDK versions
onReceivedError(view, rerr.getErrorCode(), rerr.getDescription().toString(), req.getUrl().toString());
}
});
wView.loadUrl(Host_URL);
マニフェストで
<activity
Android:name=".MainActivity"
Android:configChanges="orientation|screenSize" />