popupWindow,Attempted to finish an input event but the input event receiver has already been dispose

记录一下异常:popupWindow,Attempted to finish an input event but the input event receiver has already been dispose
自定义PopuWindow
遇到问题,再连续点击2此的时候,再第二此点击时失效,直接关闭PopuWindow,再百度PopuWindow的时候发现

//这句代码让popupWindow可以在点击外部时dissmiss,于是就导致第二次点击后popupWindow响应了这个点击事件, 于是点击事件就不响应了.. ,
        mPopupWindow.setFocusable(true);
//设置为false就行了
 mPopupWindow.setFocusable(true);

你可能感兴趣的:(android-error)