1) この UI では、ソフト キーボードが表示されたときに画面下部のボタンを静的にする必要があります。つまり、今は次のようになります
前
後
2) ソフト キーボードで Enter キーを押すと、次の編集テキスト フィールドがフォーカスされる必要があります。(つまり) K1 で Enter キーを押している間に、フォーカスが K2 に移動し、表示されている必要があります。
編集 これは私が編集テキストフィールドを取得する方法です
dr_e=(EditText)findViewById(R.id.dr_editText);
InputMethodManager imm = (InputMethodManager)getSystemService(
Context.INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow(dr_e.getWindowToken(), 0);
k1_e=(EditText)findViewById(R.id.k1_editText);
k2_e=(EditText)findViewById(R.id.k2_editText);
al_e=(EditText)findViewById(R.id.al_editText);
alconst_e=(EditText)findViewById(R.id.al_const_editText);