So I'm working in a soft keyboard, I have the keyboard view, when i touch a button it displays a new view in a popupwindow, I try to set the focus to the new view, but any further input events are forwarded till the keyboard view until the user takes their finger off the screen, now if the user touches the screen again, the touch events go to the new popupwindow appropriately. this is not what I want to occur, I want as soon as i tell the popupwindow to have focus, all touch events go to the popped up view, not the keyboard view underneath.

How can I do this?

Here is the code snippet from the view I'm popping up:

public class SuggestionView extends LinearLayout implements View.OnTouchListener
{
public void showAtLocation(View parent, int gravity, float x, float y)
{
    if (mIsShowing)
        return;

    mIsShowing = true;

    mPopupWindow = new PopupWindow(context);
    mPopupWindow.setContentView(this);
    mPopupWindow.setWidth(300);
    mPopupWindow.setHeight(300);
    mPopupWindow.showAtLocation(parent, Gravity.NO_GRAVITY, (int)x - 150, (int)y - 150);

    setFocusable(true);
    //setFocusableInTouchMode(true);

    boolean gotFocus = requestFocus();

}
link|improve this question

50% accept rate
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.