1

コードバ アプリで crosswalk の使用を開始しようとしていますが、問題は、アプリが特定のデバイスのバーコード リーダー用のカスタム プラグインを使用していることです。

基本的に、 を拡張するカスタム ビューを呼び出すプラグイン クラスがあり、特定のキーが押されているかどうかを確認するEditTextビューを作成します。OnKeyListener

プラグイン クラスの初期化中に、 を使用してwebView.getView().setOnKeyListener(view.getScanKeyListener());を作成しOnKeyListener、キープレスをチェックします。

public class ScannerInputPlugin extends CordovaPlugin implements ScannerInputView.ScannerInputListener {
    private static CallbackContext callback = null;

    @Override
    public void pluginInitialize() {
        cordova.getActivity().runOnUiThread(new java.lang.Runnable() {
            public void run() {
                ScannerInputView view = new ScannerInputView(cordova.getActivity(), ScannerInputPlugin.this);
                ((ViewGroup) webView.getView()).addView(view);
                webView.getView().setOnKeyListener(view.getScanKeyListener());
            }
        });
    }

    @Override
    public boolean execute(String action, JSONArray data, CallbackContext callbackContext) throws JSONException {
        if (action.equals("register")) {
            callback = callbackContext;
            return true;
        } else {
            return false;
        }
    }

    @Override
    public void onScannerInput(CharSequence input) {
        if (callback != null) {
            PluginResult result = new PluginResult(PluginResult.Status.OK, input != null ? input.toString() : null);
            result.setKeepCallback(true);
            callback.sendPluginResult(result);
        }
    }
}

ただし、ビューでOnKeyListenerは が呼び出されることはありません。これは crosswalk を使用している場合にのみ発生します。アプリのデバッグ時に見つかった唯一の大きな変更は、 へのwebview.engine変更XWalkWebViewEngineです。

public class ScannerInputView extends EditText {
    public static interface ScannerInputListener {
        void onScannerInput(CharSequence input);
    }

    public static final int KEYCODE_SCAN = 220;

    public ScannerInputView(Context context, final ScannerInputListener listener) {
        super(context);
        setLayoutParams(new ViewGroup.LayoutParams(0, 0));
        setInputType(InputType.TYPE_NULL);
        addTextChangedListener(new TextWatcher() {
            @Override
            public void onTextChanged(CharSequence s, int start, int before, int count) {
                if (listener != null) {
                    if (count > 0 && s.charAt(start) != 0)
                        s = s.subSequence(start, start + count);
                    else
                        s = null;
                    listener.onScannerInput(s);
                }
            }

            @Override
            public void beforeTextChanged(CharSequence s, int start, int count, int after) {
            }

            @Override
            public void afterTextChanged(Editable s) {
            }
        });
    }

    public View.OnKeyListener getScanKeyListener() {
        return new View.OnKeyListener() {
            @Override
            public boolean onKey(View v, int keyCode, KeyEvent event) {
                if (keyCode == KEYCODE_SCAN && event.getAction() == KeyEvent.ACTION_DOWN) {
                    requestFocus();
                    return true;
                }
                return false;
            }
        };
    }
}

これは横断歩道のエンジンと関係があると思いますが、まだ原因を見つけていません。問題について何かヒントはありますか?

4

1 に答える 1

0

更新として、私はstackoverflowソリューションを流すことで問題を修正することができました.XWalkViewがデフォルトでフォーカス可能ではないことを知りませんでした. setOnKeyListener の前の requestFocus()。

public void pluginInitialize() {
    cordova.getActivity().runOnUiThread(new java.lang.Runnable() {
        public void run() {
            ScannerInputView view = new ScannerInputView(cordova.getActivity(), ScannerInputPlugin.this);
            ((ViewGroup) webView.getView()).addView(view);
            webView.getView().setFocusable(true);
            webView.getView().setFocusableInTouchMode(true);
            webView.getView().requestFocus();
            webView.getView().setOnKeyListener(view.getScanKeyListener());
        }
    });
}
于 2016-06-14T15:38:08.180 に答える