当前位置: 代码迷 >> Android >> popwindow中的EditText解决方法
  详细解决方案

popwindow中的EditText解决方法

热度:59   发布时间:2016-04-28 08:09:40.0
popwindow中的EditText
@Override
public void onClick(View v) {

LinearLayout layout = (LinearLayout) View.inflate(context,
R.layout.system_setroom, null);
EditText text = (EditText) layout.findViewById(R.id.abc);
/*
 * text.setOnFocusChangeListener(new OnFocusChangeListener() {
 * 
 * public void onFocusChange(View v, boolean hasFocus) { if (hasFocus ==
 * true) { InputMethodManager inputMgr = (InputMethodManager)
 * getSystemService(Context.INPUT_METHOD_SERVICE);
 * inputMgr.toggleSoftInput(InputMethodManager.SHOW_FORCED, 0);
 * inputMgr.showSoftInput(v, InputMethodManager.SHOW_IMPLICIT);
 * 
 * } } });
 */
text.requestFocus();
text.setFocusableInTouchMode(true);

pop = new PopSystem(context, layout);

pop.update();
pop.showAsDropDown(hello);

}

这是我写的按钮事件,点击按钮跳出一个popView,popView中有一个文本输入框,问题是我不想设置popWindow。setfouse为true,但是可以让文本输入框(EidtText)可以获得焦点,正常跳出软键盘可输入文字。现在点击挑不出来软键盘。求高手指点

------解决方案--------------------
popupwinodw.setFocusable(true);,
  相关解决方案