Tabキーを押すと、次のEditTextに移動します。現時点では空白を追加するだけで、Android2.3で作業しています
誰か知ってる?
ありがとう!
これが私が解決した方法です:
private class GenericTextWatcher implements TextWatcher{
private View view;
private GenericTextWatcher(View view) {
this.view = view;
}
public void onTextChanged(CharSequence charSequence, int i, int i1, int i2) {
switch(view.getId()){
case R.id.txt_checklocation_location:
if (txt_checklocation_location.getText().toString().endsWith("\t"))
txt_checklocation_location.focusSearch(View.FOCUS_DOWN).requestFocus();
break;
}
}
public void beforeTextChanged(CharSequence charSequence, int i, int i1, int i2) {}
public void afterTextChanged(Editable editable) {}
}