4

我在我的android项目中放置了EditText一个。PopupWindow设置PopupWindow.setFocusable为 false 时,不会显示软键盘。当设置PopupWindow.setFocusable为 true 时,EditText注意力集中,活动进入睡眠状态!弹出窗口上的其他项目有效,但手机上的后退按钮和在弹出窗口之外单击不会关闭它。提前致谢。

4

2 回答 2

10

我项目中的一些代码可能会有所帮助

        LayoutInflater inflater = (LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        PopupWindow  share_popup = new PopupWindow(inflater.inflate(R.layout.share_dropdown, null, false), 162, LinearLayout.LayoutParams.WRAP_CONTENT, true);
        share_popup.setOutsideTouchable(true);
        share_popup.setTouchable(true);
        share_popup.setFocusable(true);
        Drawable image_saved = getResources().getDrawable(R.drawable.dummy_bg);
        share_popup.setBackgroundDrawable(image_saved);

R.drawable.dummy_bg是一个透明图像。

于 2012-12-16T06:41:22.637 回答
2

我刚设置setBackgroundDrawablePopupWindow。一切似乎都很好!我惊呆了!!

于 2012-12-17T07:07:55.327 回答