Skip to content

Instantly share code, notes, and snippets.

@Reacoder
Created August 5, 2014 09:30
Show Gist options
  • Save Reacoder/6b6e65d7496e43c96364 to your computer and use it in GitHub Desktop.
Save Reacoder/6b6e65d7496e43c96364 to your computer and use it in GitHub Desktop.
PopupWindow - Dismiss when clicked outside
mFilterWindow = new PopupWindow(popupLayout,
WindowManager.LayoutParams.WRAP_CONTENT,
WindowManager.LayoutParams.WRAP_CONTENT);
mFilterWindow.setOutsideTouchable(true);
mFilterWindow.setBackgroundDrawable(new ColorDrawable());
mFilterWindow.setFocusable(true);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment