Android のデフォルト キーボードとカスタム キーボードの両方を使用するアプリケーションがあります。デフォルトのキーボードが呼び出されるたびにカスタムキーボードが閉じられ、その逆も同様に設定されています。私の問題は、Galaxy S3 などの一部のデバイスでは、テキストが選択されるたびに、デフォルトのキーボードがカスタム キーボードと重なって表示されることです。edittext でテキストを選択/強調表示するためのイベントを処理または変更する方法はありますか?
質問する
163 次
2 に答える
0
InputMethodManager inputMethodManager = (InputMethodManager) activity.getSystemService(Activity.INPUT_METHOD_SERVICE);
inputMethodManager.hideSoftInputFromWindow(activity.getCurrentFocus().getWindowToken(), 0);
イベントの使用::
@Override
public boolean dispatchTouchEvent(MotionEvent event) {
View view = getCurrentFocus();
boolean ret = super.dispatchTouchEvent(event);
if (view instanceof EditText) {
View w = getCurrentFocus();
int scrcoords[] = new int[2];
w.getLocationOnScreen(scrcoords);
float x = event.getRawX() + w.getLeft() - scrcoords[0];
float y = event.getRawY() + w.getTop() - scrcoords[1];
if (event.getAction() == MotionEvent.ACTION_UP
&& (x < w.getLeft() || x >= w.getRight()
|| y < w.getTop() || y > w.getBottom()) ) {
InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow(getWindow().getCurrentFocus().getWindowToken(), 0);
}
}
return ret;
}
于 2013-08-05T07:48:50.110 に答える