我的自定义视图有一个问题,其中包含一个编辑文本和一个微调器。我使用 IMEoptions 添加了一个“下一步”按钮。根据微调器,edittext 键盘应包含“下一步”或“完成”键。
目前我使用以下方法解决了这个问题:
@Override
public void onItemSelected(AdapterView<?> adapterView, View view, int position, long id) {
final Object item = adapterView.getItemAtPosition(position);
if (item.equals(getString(STRING1))) {
edittext.setImeOptions(EditOptions.IME_OPTIONS_NEXT);
} else if(item.equals(getString(STRING2)){
edittext.setImeOptions(EditOptions.IME_OPTIONS_ACTION_DONE);
}
edittext.setText(edittext.getText());
//This updates the edittext but is very much an ugly hack.
//Is there another way to update this? invalidate() and forceLayout()
//does not do the trick
}