PopupWindow与软件盘冲突,且软键盘出现背景色
PopupWindow与软件盘冲突,且软键盘出现背景色
最近写了一个项目,在项目中运用了popwindow,该popwindow中有个editText,原以为editText可以直接弹出软件盘,谁知道焦点冲突了
解决方案:为了让软件盘可以弹出,那么可以让popwindow获得焦点,这样当popwindow弹出时不会出现软件盘,触发editText,既可以出现软件盘,代码如下:
public void initDate(){
if (contentView==null){
contentView = View.inflate(mContext, R.layout.pop_search, null);
}
if (mPopupWindow==null){
mPopupWindow=new PopupWindow(contentView,
LinearLayout.LayoutParams.MATCH_PARENT,
LinearLayout.LayoutParams.MATCH_PARENT);
//设置可以获取焦点,否则弹出菜单中的EditText是无法获取输入的
mPopupWindow.setFocusable(true);
//这句是为了设置软件弹出不回出现底层背景颜色
mPopupWindow.setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_PAN);
mPopupWindow.setOnDismissListener(this);
}
mPopupWindow.showAtLocation(view,Gravity.BOTTOM |Gravity.LEFT,0,0);
et_search = contentView.findViewById(R.id.et_search);
mRecyclerView = contentView.findViewById(R.id.recyclerView);
tv_click_top = contentView.findViewById(R.id.tv_click_top);
tv_click_foot = contentView.findViewById(R.id.tv_click_foot);
mRecyclerView.setLayoutManager(new GridLayoutManager(mContext,8));
SearchAdapter adapter=new SearchAdapter(mRecyclerView);
mRecyclerView.setAdapter(adapter);
tv_click_top.setOnClickListener(this);
tv_click_foot.setOnClickListener(this);
}
2.背景色的解决方案
看了很多网站,要求给软键盘增加较多的属性:
例如一下代码:
//得到弹出菜单的view,login_setting_popup是弹出菜单的布局文件
View view = getLayoutInflater().inflate(R.layout.login_setting_popup, null);
//初始化弹出菜单
popWindow = new PopupWindow(view, WindowManager.LayoutParams.FILL_PARENT,WindowManager.LayoutParams.WRAP_CONTENT,false);
//设置可以获取焦点,否则弹出菜单中的EditText是无法获取输入的
popWindow.setFocusable(true);
//这句是为了防止弹出菜单获取焦点之后,点击activity的其他组件没有响应
popWindow.setBackgroundDrawable(new BitmapDrawable());
//防止虚拟软键盘被弹出菜单遮住
popWindow.setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE);
//在底部显示
popWindow.showAtLocation(this,Gravity.BOTTOM, 0, 0);
上述代码会产生一个pop覆盖后,弹出软件盘,软键盘会将pop顶上去,此时被覆盖View的背景色将会出现在软件盘语pop之间,为了解决这个问题我们只需要显示一行代码既可以
// 如果不设置焦点,软键盘将无法弹出
mPopupWindow.setFocusable(true);
//这句是为了设置软件弹出不回出现底层背景颜色 mPopupWindow.setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_PAN);
下一篇: 软键盘的显示与隐藏