1) 我有这个用户界面,当出现软键盘时,屏幕底部的按钮必须是静态的。即现在它来了
前
后
2) 当我在软键盘上按下输入时,下一个编辑文本字段必须成为焦点。(即)在 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);