我有FrameLayout
个容器,我想在其中动态添加EditText
。我需要在同一时间设置两个imeOptions
:IME_ACTION_DONE
和IME_FLAG_NO_EXTRACT_UI
,但我有问题如何以编程方式执行此操作。我的解决方案覆盖了我的imeOptions
(我现在这是很好的行为:)但我尝试了一切)
我的第二个问题:如何以编程方式创建EditText后设置焦点?这种方法editText.requestFocus();
对我不起作用。我想在postCardContainer.addView(editText);
postCardContainer.setOnTouchListener(new View.OnTouchListener() {
@Override
public boolean onTouch(View v, MotionEvent event) {
FrameLayout.LayoutParams params = new FrameLayout.LayoutParams(ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT);
params.topMargin = (int) event.getY()-50;
params.leftMargin = (int) event.getX()-50;
EditText editText = new EditText(NewPostcardActivity.this);
editText.setSingleLine();
editText.setBackgroundResource(R.color.transparent);
editText.requestFocus();
editText.setLayoutParams(params);
editText.setCursorVisible(true);
editText.setImeOptions(EditorInfo.IME_ACTION_DONE);
editText.setImeOptions(EditorInfo.IME_FLAG_NO_EXTRACT_UI);
postCardContainer.addView(editText);
return false;
}
});
由于
答案 0 :(得分:9)
尝试如下。
editText.setImeOptions(EditorInfo.IME_ACTION_DONE | EditorInfo.IME_FLAG_NO_EXTRACT_UI);